9 lignes
181 o
Go
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)
|
|
}
|