mirror of
https://github.com/axllent/mailpit.git
synced 2024-12-28 23:06:43 +02:00
9 lines
169 B
Go
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)
|
|
}
|