niki/kindbox-app/delivery/http/health_check.go

11 lines
188 B
Go

package http
import (
"github.com/labstack/echo/v4"
"net/http"
)
func (s Server) healthCheck(c echo.Context) error {
return c.JSON(http.StatusOK, "Everything is ok (kind box app)")
}