fog/cmd/api/health.go

10 lines
175 B
Go

package main
import "net/http"
type healthCheckHandler struct {
}
func (h *healthCheckHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("ok"))
}