using Microsoft.AspNetCore.Components.WebAssembly.Hosting; using Moonlight.Client.Interfaces; using Moonlight.Client.Plugins; namespace Moonlight.Client.Implementations; public class CoreStartup : IPluginStartup { public Task BuildApplication(IServiceProvider serviceProvider, WebAssemblyHostBuilder builder) { builder.Services.AddSingleton(); builder.Services.AddSingleton(); return Task.CompletedTask; } public Task ConfigureApplication(IServiceProvider serviceProvider, WebAssemblyHost app) => Task.CompletedTask; }