UI_SequentMicrosystems-RPI/Program.cs

27 lines
902 B
C#
Raw Permalink Normal View History

using Blazored.Modal;
2023-12-16 07:59:53 +00:00
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using UI_SequentMicrosystems.Services;
namespace UI_SequentMicrosystems
{
public class Program
{
public static async Task Main(string[] args)
{
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");
builder.Services.AddBlazoredModal();
2023-12-16 07:59:53 +00:00
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
builder.Services.AddSingleton<RTD8TMService>();
builder.Services.AddSingleton<PointsService>();
2024-01-17 05:34:15 +00:00
builder.Services.AddSingleton<SyncService>();
2023-12-16 07:59:53 +00:00
await builder.Build().RunAsync();
}
}
}