--- Handlers: meta ---
(w http.ResponseWriter, _ *http.Request)
| 282 | // --- Handlers: meta --- |
| 283 | |
| 284 | func (s *Server) healthz(w http.ResponseWriter, _ *http.Request) { |
| 285 | writeJSON(w, http.StatusOK, map[string]any{"ok": true}) |
| 286 | } |
| 287 | |
| 288 | func (s *Server) version(w http.ResponseWriter, _ *http.Request) { |
| 289 | writeJSON(w, http.StatusOK, map[string]any{ |
nothing calls this directly
no test coverage detected