WIP: backend protection

This commit is contained in:
2022-12-06 12:27:09 +01:00
parent 7330fb90f2
commit 55b5150049
23 changed files with 499 additions and 114 deletions

View File

@@ -1,17 +0,0 @@
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
var app = builder.Build();
// Configure the HTTP request pipeline.
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();