[FA-27] UserNovelDataService bootstrapped, going to do author's posts first i think

This commit is contained in:
gamer147
2025-12-29 14:54:01 -05:00
parent d8e3ec7ec9
commit 5013da69c2
10 changed files with 210 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
using FictionArchive.Service.Shared.Services.Database;
using Microsoft.EntityFrameworkCore;
namespace FictionArchive.Service.UserNovelDataService.Services;
public class UserNovelDataServiceDbContext : FictionArchiveDbContext
{
public UserNovelDataServiceDbContext(DbContextOptions options, ILogger<UserNovelDataServiceDbContext> logger) : base(options, logger)
{
}
}