using PlanTempusAdmin.Services; var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddRazorPages(); // Register HttpClient for CaddyService builder.Services.AddHttpClient(); // Register BackupService builder.Services.AddScoped(); // Register ForgejoService builder.Services.AddScoped(); // Register AzureStorageService builder.Services.AddSingleton(); 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();