initial push
Some checks failed
Build and Push Docker Image / docker (push) Has been cancelled

This commit is contained in:
2026-04-07 21:09:18 +00:00
commit d48d2a7b79
108 changed files with 78378 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.EntityFrameworkCore;
namespace Example.Data;
public sealed class PostgresApplicationDbContext : ApplicationDbContext
{
public PostgresApplicationDbContext(DbContextOptions<PostgresApplicationDbContext> options)
: base(options)
{
}
}