initial commit

This commit is contained in:
2026-04-30 09:49:00 +02:00
parent 455ef6accd
commit 44e6f0656a
128 changed files with 64981 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
namespace EntKube.Client
{
internal 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();
}
}
}