bottin/handlers/v4.go
Victor Lacasse-Beaudoin 9a0bf87e7b Bump root version to v4
Remove all files from v3

Move all files from v4/ to project root
2023-05-29 18:19:31 -04:00

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",
})
}