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}