chore: initial project setup

This commit is contained in:
Stevan Freeborn
2025-05-07 22:59:38 -05:00
commit 3534bc4f20
11 changed files with 1036 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
using StevesBot.Worker;
var builder = Host.CreateApplicationBuilder(args);
builder.Services.AddHostedService<Worker>();
var host = builder.Build();
host.Run();