10 lines
200 B
C#
10 lines
200 B
C#
var builder = WebApplication.CreateBuilder(args);
|
|
var app = builder.Build();
|
|
|
|
app.UseStaticFiles();
|
|
app.UseDefaultFiles();
|
|
|
|
app.MapGet("/", () => Results.Redirect("/home.html"));
|
|
|
|
app.Run();
|