bottin/handlers/v4.go

14 lines
203 B
Go
Raw Permalink Normal View History

2023-05-25 02:21:09 -04:00
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",
})
}