Skip to content
Snippets Groups Projects
jwks.go 247 B
Newer Older
Gabriel Zachmann's avatar
Gabriel Zachmann committed
package endpoints

import (
	"github.com/gofiber/fiber/v2"
	"github.com/oidc-mytoken/server/internal/jws"
// HandleJWKS handles request for the jwks, returning the jwks
Gabriel Zachmann's avatar
Gabriel Zachmann committed
func HandleJWKS(ctx *fiber.Ctx) error {
	return ctx.JSON(jws.GetJWKS())
}