Files
deepdrft/DeepDrftWeb.Client/Program.cs
T
daniel f0d60190cc Track Gallery front end
- For now uses a table but will replace with graphical media cards
2025-09-01 16:50:08 -04:00

12 lines
330 B
C#

using DeepDrftWeb.Client;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using MudBlazor.Services;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.Services.AddMudServices();
Startup.ConfigureDomainServices(builder.Services, builder.HostEnvironment.BaseAddress);
await builder.Build().RunAsync();