Added backend project

This commit is contained in:
2025-02-28 15:56:27 +01:00
parent 27119c798d
commit 204f1a3e1d
9 changed files with 178 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi
builder.Services.AddOpenApi();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment()) {
app.MapOpenApi();
}
app.UseHttpsRedirection();
app.Run();