Attempt to fix errors

Attempt to fix errors, introduced new errors.
This commit is contained in:
Mario Steele 2025-08-05 11:38:55 -05:00
parent 8187a03419
commit 2e4f644c17
3 changed files with 3 additions and 10 deletions

View file

@ -11,7 +11,7 @@ public static class PingEndpoint
group.MapGet("/", async (CancellationToken token) =>
{
await Task.Delay(10);
var dict = new { AppVersion = "0.1.3" };
var dict = new { AppVersion = "0.1.4" };
return Results.Ok(dict);
});