1
0
Bifurcation 0
Ce dépôt a été archivé le 2024-03-02. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
mangadex-next/controllers/health.go
2021-03-21 18:40:39 +00:00

9 lignes
181 o
Go

package controllers
import "net/http"
type HealthController struct{}
func (h *HealthController) Healthy(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
}