pollo/api/ping.go

12 lines
146 B
Go
Raw Permalink Normal View History

2023-05-18 20:04:55 -06:00
package api
import (
"net/http"
"github.com/labstack/echo/v4"
)
func Ping(c echo.Context) error {
return c.String(http.StatusOK, "Pong!")
}