Initial DeepDrftContent CDN API

This commit is contained in:
2025-08-30 21:34:09 -04:00
parent 970350fd61
commit c86632e979
7 changed files with 101 additions and 0 deletions
+21
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();