A fork of the Cocoon PDS but being made more distributed.
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 239 B View raw
1package server 2 3import "github.com/labstack/echo/v4" 4 5type OauthJwksResponse struct { 6 Keys []any `json:"keys"` 7} 8 9// TODO: ? 10func (s *Server) handleOauthJwks(e echo.Context) error { 11 return e.JSON(200, OauthJwksResponse{Keys: []any{}}) 12}