1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-01-30 04:30:56 +02:00

Fix docblock comment

This commit is contained in:
Ralph Slooten 2023-09-06 16:14:54 +12:00
parent a37da776d7
commit e265d7018e

View File

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