1
0
mirror of https://github.com/axllent/mailpit.git synced 2024-12-28 23:06:43 +02:00
mailpit/server/handlers/k8healthz.go
2023-09-06 16:14:54 +12:00

9 lines
169 B
Go

package handlers
import "net/http"
// HealthzHandler is a liveness probe
func HealthzHandler(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusOK)
}