feat(jobAutoControl): проекты + cicd

This commit is contained in:
Mikhail Trubnikov
2024-09-11 16:57:09 +10:00
parent 66a91c6cc6
commit 0b1c52422f
10 changed files with 156 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
using PARR.JobAutoControlWorker;
IHost host = Host.CreateDefaultBuilder(args)
.ConfigureServices(services =>
{
services.AddHostedService<Worker>();
})
.Build();
host.Run();