diff --git a/api/api.go b/api/api.go index 06ed4aa..095ef1f 100644 --- a/api/api.go +++ b/api/api.go @@ -220,4 +220,10 @@ func configHandlers(e *echo.Echo) { e.POST("/apps/:app/sync", appForceSyncRule) e.GET("/jobs/:job/rules", jobRules) + + e.GET("/healthcheck", healthcheck) +} + +func healthcheck(c echo.Context) error { + return c.String(http.StatusOK, "OK") }