A locally focused bluesky appview
at master 348 B view raw
1package unspecced 2 3import ( 4 "net/http" 5 6 "github.com/labstack/echo/v4" 7) 8 9// HandleGetConfig implements app.bsky.unspecced.getConfig 10// Returns basic configuration for the app 11func HandleGetConfig(c echo.Context) error { 12 return c.JSON(http.StatusOK, map[string]interface{}{ 13 "checkEmailConfirmed": false, 14 "liveNow": []any{}, 15 }) 16}