added health routes

This commit is contained in:
2026-01-05 14:41:25 +08:00
parent c69a33dfd8
commit 81d3c5a3bd
4 changed files with 90 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
package models
// HealthResponse represents the health check response
type HealthResponse struct {
Status string `json:"status"`
Services map[string]string `json:"services,omitempty"`
}