var builder = WebApplication.CreateBuilder(args); var app = builder.Build(); app.MapGet("/", () => "Fengling RiskControl Service"); app.Run();