PlanTempusAdmin/Program.cs
Janus C. H. Knudsen 77d35ff965 Initial commit
2026-02-03 00:17:08 +01:00

39 lines
834 B
C#

using PlanTempusAdmin.Services;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorPages();
// Register HttpClient for CaddyService
builder.Services.AddHttpClient<CaddyService>();
// Register BackupService
builder.Services.AddScoped<BackupService>();
// Register ForgejoService
builder.Services.AddScoped<ForgejoService>();
// Register AzureStorageService
builder.Services.AddSingleton<AzureStorageService>();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error");
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseRouting();
app.UseAuthorization();
app.MapStaticAssets();
app.MapRazorPages()
.WithStaticAssets();
app.Run();