1using Den.Infrastructure.Persistence;
2using Den.MigrationService;
3
4var builder = Host.CreateApplicationBuilder(args);
5builder.AddServiceDefaults(isApi: false);
6builder.Services.AddHostedService<Worker>();
7builder.AddNpgsqlDbContext<DenDbContext>(connectionName: "postgresdb");
8
9var host = builder.Build();
10host.Run();