package handlers import "github.com/labstack/echo/v4" func RootHandler(c echo.Context) error { return c.String(200, "Hello, World!") }