mirror of
https://github.com/axllent/mailpit.git
synced 2025-07-03 00:46:58 +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)
|
||
|
}
|