This commit is contained in:
h z
2025-03-09 11:51:30 +00:00
commit 39e193bd44
8 changed files with 93 additions and 0 deletions

7
Program.cs Normal file
View File

@@ -0,0 +1,7 @@
using Alchegos.Analyst;
var builder = Host.CreateApplicationBuilder(args);
builder.Services.AddHostedService<Worker>();
var host = builder.Build();
host.Run();