12 lines
171 B
Go
12 lines
171 B
Go
|
|
package queryapi
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
|
||
|
|
"github.com/labstack/echo/v4"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (s *Controllers) IsHealthy(ctx echo.Context) error {
|
||
|
|
return ctx.NoContent(http.StatusOK)
|
||
|
|
}
|