From 1d23e89b1856dfafc02ff2d5b7efac2202befd23 Mon Sep 17 00:00:00 2001 From: Bernt Date: Wed, 29 Jul 2026 21:25:26 +0000 Subject: [PATCH] feat(api): add /api/v1/health endpoint for ledger integration --- backend/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/main.go b/backend/main.go index ac7989173..fa27e1d56 100644 --- a/backend/main.go +++ b/backend/main.go @@ -164,6 +164,7 @@ func main() { }) r.Get("/health", handlers.NewHealthHandler()) + r.Get("/api/v1/health", handlers.NewHealthHandler()) r.Get("/metrics", promhttp.Handler().ServeHTTP) r.Get("/debug/token", handlers.DebugTokenHandler(cfg.JWTSecret))