Files
dejo-node/internal/api/health.go
2025-05-23 10:44:32 -03:00

10 lines
158 B
Go

package api
import (
"net/http"
)
func (h *Handler) Health(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
w.Write([]byte("ok"))
}