Skip to content

Commit 74a2d6a

Browse files
committed
Fix: updating checkup
1 parent 3a82944 commit 74a2d6a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

services/core/http_routes.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ import (
4646
)
4747

4848
func (h *HttpHandler) Register(r *echo.Echo) {
49+
// Register the health check endpoint (typically public, no auth needed)
50+
r.GET("/health", h.healthCheck) // <--- ADD THIS LINE
51+
4952
v1 := r.Group("/api/v1")
5053
// metadata
5154
filter := v1.Group("/filter")

0 commit comments

Comments
 (0)