From ed2205972a7b7d6fdd4563c3775a83616920597a Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Mon, 19 Jun 2023 02:36:32 +0200 Subject: Working sync --- MatrixRoomUtils.Bot/Program.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'MatrixRoomUtils.Bot/Program.cs') diff --git a/MatrixRoomUtils.Bot/Program.cs b/MatrixRoomUtils.Bot/Program.cs index 83fa4f4..441003e 100644 --- a/MatrixRoomUtils.Bot/Program.cs +++ b/MatrixRoomUtils.Bot/Program.cs @@ -1,2 +1,26 @@ // See https://aka.ms/new-console-template for more information + +using MatrixRoomUtils.Bot; +using MatrixRoomUtils.Core.Services; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; + Console.WriteLine("Hello, World!"); + +using IHost host = Host.CreateDefaultBuilder(args) + .ConfigureServices((_, services) => { + services.AddScoped(x => + new( + cacheStorageProvider: new FileStorageProvider("data/cache/"), + dataStorageProvider: new FileStorageProvider("data/data/") + ) + ); + + services.AddRoryLibMatrixServices(); + + services.AddHostedService(); + }) + .Build(); + + +await host.RunAsync(); \ No newline at end of file -- cgit 1.4.1