wasa-test/service/api/liveness.go
2024-10-01 23:55:57 +02:00

16 lines
516 B
Go

package api
import (
"github.com/julienschmidt/httprouter"
"net/http"
)
// liveness is an HTTP handler that checks the API server status. If the server cannot serve requests (e.g., some
// resources are not ready), this should reply with HTTP Status 500. Otherwise, with HTTP Status 200
func (rt *_router) liveness(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
/* Example of liveness check:
if err := rt.DB.Ping(); err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}*/
}