about summary refs log tree commit diff
path: root/Program.cs
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-09-15 09:50:45 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-09-15 09:50:45 +0200
commitcc31b4a2bef780abaf496bff50ce5e7602d8a6e1 (patch)
treef25a87c79cdfeb853146c5312b8990f644c71eae /Program.cs
parentMedia moderator PoC works, abstract command handling to library (diff)
downloadLibMatrix.ExampleBot-cc31b4a2bef780abaf496bff50ce5e7602d8a6e1.tar.xz
Some refactoring
Diffstat (limited to '')
-rw-r--r--Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Program.cs b/Program.cs

index 0378ec9..ef40ecb 100644 --- a/Program.cs +++ b/Program.cs
@@ -25,7 +25,7 @@ var host = Host.CreateDefaultBuilder(args).ConfigureServices((_, services) => { services.AddScoped(typeof(ICommand), commandClass); } - services.AddHostedService<ServerRoomSizeCalulator>(); + // services.AddHostedService<ServerRoomSizeCalulator>(); services.AddHostedService<MRUBot>(); }).UseConsoleLifetime().Build();