mirror of
https://github.com/axllent/mailpit.git
synced 2025-04-17 12:06:22 +02:00
9 lines
162 B
Go
9 lines
162 B
Go
|
package handlers
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
// Healthz is a liveness probe
|
||
|
func HealthzHandler(w http.ResponseWriter, _ *http.Request) {
|
||
|
w.WriteHeader(http.StatusOK)
|
||
|
}
|