Files
psg-oversight-app/OversightService/Program.cs
2025-10-10 12:06:35 +08:00

8 lines
162 B
C#

using OversightService;
var builder = Host.CreateApplicationBuilder(args);
builder.Services.AddHostedService<Worker>();
var host = builder.Build();
host.Run();