Files
nexus/internal/handler/health.go
2026-07-14 05:53:25 -05:00

14 lines
254 B
Go

package handler
import "net/http"
// Ready handles GET /health and GET /ready.
func Ready() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
respondJSON(w, http.StatusOK, map[string]string{
"status": "healthy",
})
}
}