11 lines
209 B
Go
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",
|
|
})
|
|
}
|