mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 08:32:16 +01:00
11 lines
149 B
Go
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
|
|
}
|