fog/cmd/api/health.go

11 lines
175 B
Go
Raw Normal View History

2024-12-30 06:29:34 +00:00
package main
import "net/http"
type healthCheckHandler struct {
}
func (h *healthCheckHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("ok"))
}