We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6eeb4f1 commit 10396f3Copy full SHA for 10396f3
1 file changed
src/FitSpec.API/Program.cs
@@ -89,6 +89,7 @@
89
}
90
91
app.UseCors("Angular");
92
+app.MapGet("/health", () => Results.Ok(new { status = "healthy", timestamp = DateTime.UtcNow }));
93
app.MapControllers();
94
app.MapHub<FitSpec.API.Hubs.InventoryHub>("/hubs/inventory");
95
0 commit comments