blob: 7e432aaf0c488020be7f39248a65688864604551 (
plain)
1
2
3
4
5
6
7
8
|
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "hello web xmake!");
app.MapGet("/health", () => Results.Ok(new { status = "ok" }));
app.Run();
|