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

7
Program.cs Normal file
View File

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