2025-08-07 02:23:30 +01:00

11 lines
209 B
Go

package handlers
import "github.com/labstack/echo/v4"
func RootHandler(c echo.Context) error {
return c.JSON(200, map[string]string{
"status": "😺",
"docs": "https://illfillthisoutlater.com",
})
}