using HelloShop.ApiService.Infrastructure; using Yarp.ReverseProxy.Configuration; var builder = WebApplication.CreateBuilder(args); // Add service defaults & Aspire components. builder.AddServiceDefaults(); // Add services to the container. builder.Services.AddControllers().AddDataAnnotationsLocalization(); builder.Services.AddHttpForwarderWithServiceDiscovery(); builder.Services.AddReverseProxy() .LoadFromConfig(builder.Configuration.GetSection("ReverseProxy")) .LoadFromMemory(routes: [], clusters: []); builder.Services.AddSingleton(); builder.Services.AddSingleton(); var app = builder.Build(); app.MapDefaultEndpoints(); app.Services.GetRequiredService().ApplicationStarted.Register(async () => { IReverseProxyConfigProvider provider = app.Services.GetRequiredService(); IReadOnlyList routes = await provider.GetRoutesAsync(); IReadOnlyList clusters = await provider.GetClustersAsync(); app.Services.GetRequiredService().Update(routes, clusters); }); app.MapReverseProxy(); app.MapControllers(); app.Run();