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