Files
gotenberg/internal/app/api/pkg/handler/ping.go
2019-07-07 17:45:07 +02:00

11 lines
149 B
Go

package handler
import (
"github.com/labstack/echo/v4"
)
// Ping is the endpoint for healthcheck.
func Ping(c echo.Context) error {
return nil
}