initial commit

This commit is contained in:
V1ck3s
2025-09-20 16:42:46 +02:00
commit 843ef87da8
52 changed files with 1137 additions and 0 deletions

24
octo-fiesta/Program.cs Normal file
View File

@@ -0,0 +1,24 @@
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();