var builder = WebApplication.CreateBuilder(args); var app = builder.Build(); app.MapGet("/", () => Results.Text( "Neon Sprawl game server — GET /health for JSON status.", "text/plain")); app.MapGet("/health", () => Results.Json(new { status = "ok", service = "NeonSprawl.Server", })); app.Run();