From d133a168c17d605236e967ff63728420ddb0ed98 Mon Sep 17 00:00:00 2001 From: Rory& Date: Wed, 31 Jan 2024 18:50:16 +0100 Subject: Repo split --- ExampleBots/ModerationBot/Program.cs | 40 ------------------------------------ 1 file changed, 40 deletions(-) delete mode 100644 ExampleBots/ModerationBot/Program.cs (limited to 'ExampleBots/ModerationBot/Program.cs') diff --git a/ExampleBots/ModerationBot/Program.cs b/ExampleBots/ModerationBot/Program.cs deleted file mode 100644 index d125258..0000000 --- a/ExampleBots/ModerationBot/Program.cs +++ /dev/null @@ -1,40 +0,0 @@ -// See https://aka.ms/new-console-template for more information - -using LibMatrix.Services; -using LibMatrix.Utilities.Bot; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Hosting; -using ModerationBot; - -Console.WriteLine("Hello, World!"); - -var builder = Host.CreateDefaultBuilder(args); - -builder.ConfigureHostOptions(host => { - host.ServicesStartConcurrently = true; - host.ServicesStopConcurrently = true; - host.ShutdownTimeout = TimeSpan.FromSeconds(5); -}); - -if (Environment.GetEnvironmentVariable("MODERATIONBOT_APPSETTINGS_PATH") is string path) - builder.ConfigureAppConfiguration(x => x.AddJsonFile(path)); - -var host = builder.ConfigureServices((_, services) => { - services.AddScoped(x => - new TieredStorageService( - cacheStorageProvider: new FileStorageProvider("bot_data/cache/"), - dataStorageProvider: new FileStorageProvider("bot_data/data/") - ) - ); - services.AddSingleton(); - - services.AddRoryLibMatrixServices(); - services.AddBot(withCommands: true); - - services.AddSingleton(); - - services.AddHostedService(); -}).UseConsoleLifetime().Build(); - -await host.RunAsync(); \ No newline at end of file -- cgit 1.5.1