NEXUS-1: Initial commit of Nexus

This commit is contained in:
Blake Ridgway
2026-07-14 05:53:25 -05:00
commit 16fe2bf928
22 changed files with 1739 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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",
})
}
}