forked from torstorruste/RaidPlannerClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
34 lines (31 loc) · 1.32 KB
/
Program.cs
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
29
30
31
32
33
34
using System;
using System.Net.Http;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Text;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using RaidPlannerClient.Service;
namespace RaidPlannerClient
{
public class Program
{
public static async Task Main(string[] args)
{
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("app");
builder.Services.AddScoped<ToastService>();
builder.Services.AddScoped<IPlayerService, PlayerService>();
builder.Services.AddScoped<ICharacterService, CharacterService>();
builder.Services.AddScoped<IInstanceService, InstanceService>();
builder.Services.AddScoped<IBossService, BossService>();
builder.Services.AddScoped<IApprovalService, ApprovalService>();
builder.Services.AddScoped<IRaidService, RaidService>();
builder.Services.AddScoped<IEncounterService, EncounterService>();
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri("http://tor.superhelt.org:8080/") });
await builder.Build().RunAsync();
}
}
}