Newer
Older
package endpoints
import (
"github.com/gofiber/fiber/v2"
// HandleJWKS handles request for the jwks, returning the jwks
func HandleJWKS(ctx *fiber.Ctx) error {
return ctx.JSON(jws.GetJWKS())
}
package endpoints
import (
"github.com/gofiber/fiber/v2"
// HandleJWKS handles request for the jwks, returning the jwks
func HandleJWKS(ctx *fiber.Ctx) error {
return ctx.JSON(jws.GetJWKS())
}