diff --git a/cmd/backoffice/main.go b/cmd/backoffice/main.go index 2f11eba..f83232b 100644 --- a/cmd/backoffice/main.go +++ b/cmd/backoffice/main.go @@ -154,6 +154,10 @@ func main() { w.WriteHeader(http.StatusOK) _, _ = w.Write([]byte("ok")) }) + mux.HandleFunc("/livez", func(w http.ResponseWriter, r *http.Request) { + w.WriteHeader(http.StatusOK) + _, _ = w.Write([]byte("ok")) + }) srv := &http.Server{ Addr: addr,