14 lines
203 B
Go
14 lines
203 B
Go
|
package handlers
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/labstack/echo/v4"
|
||
|
)
|
||
|
|
||
|
func GetV4(c echo.Context) error {
|
||
|
return c.JSON(http.StatusOK, map[string]string{
|
||
|
"message": "Bottin API v4 is ready",
|
||
|
})
|
||
|
}
|