blob: f3750a8a201d76a09ebc0d53766698d3a07c0b52 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// See https://aka.ms/new-console-template for more information
using LibMatrix.Services;
using LibMatrix.Utilities.Bot;
using LibMatrix.Utilities.Bot.AppServices;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using TestDataGenerator.Bot;
Console.WriteLine("Hello, World!");
var host = Host.CreateDefaultBuilder(args).ConfigureServices((_, services) => {
services.AddScoped<TieredStorageService>(_ =>
new TieredStorageService(
new FileStorageProvider("bot_data/cache/"),
new FileStorageProvider("bot_data/data/")
)
);
// services.AddSingleton<DataFetcherConfiguration>();
services.AddSingleton<AppServiceConfiguration>();
services.AddRoryLibMatrixServices();
services.AddMatrixBot();//.AddCommandHandler().AddCommands([typeof()]);
services.AddHostedService<DataFetcher>();
}).UseConsoleLifetime().Build();
await host.RunAsync();
|