rename files

This commit is contained in:
Maxime Adler
2025-02-15 21:42:12 +01:00
parent 2ed5f80fb1
commit 7a87e3457b
72 changed files with 5 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
// 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.UseAuthorization();
app.MapControllers();
app.Run();