var builder = WebApplication.CreateBuilder(args); builder.Services.AddHealthChecks(); var app = builder.Build(); app.MapGet("/", () => "BFF placeholder"); app.MapHealthChecks("/health"); app.Run(); // Exposed so the test host (WebApplicationFactory) can boot the app. public partial class Program;