12 lines
146 B
Go
12 lines
146 B
Go
![]() |
package api
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/labstack/echo/v4"
|
||
|
)
|
||
|
|
||
|
func Ping(c echo.Context) error {
|
||
|
return c.String(http.StatusOK, "Pong!")
|
||
|
}
|