about summary refs log tree commit diff
path: root/Utilities/LibMatrix.TestDataGenerator/Program.cs
blob: 2583817919b77480f1c2d762c144350abc0e56c0 (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
// See https://aka.ms/new-console-template for more information

using LibMatrix.Services;
using LibMatrix.Utilities.Bot;
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();