diff --git a/lib/health/status.go b/lib/health/status.go new file mode 100644 index 0000000..0d9ea5e --- /dev/null +++ b/lib/health/status.go @@ -0,0 +1,11 @@ +package health + +import ( + "net/http" + + "github.com/labstack/echo/v4" +) + +func Health(c echo.Context) error { + return c.NoContent(http.StatusOK) +}