Files
Entkube/src/EntKube.Web.Client/Program.cs
2026-05-18 08:37:09 +02:00

18 lines
448 B
C#

using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
namespace EntKube.Web.Client;
class Program
{
static async Task Main(string[] args)
{
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.Services.AddAuthorizationCore();
builder.Services.AddCascadingAuthenticationState();
builder.Services.AddAuthenticationStateDeserialization();
await builder.Build().RunAsync();
}
}