mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 04:40:05 +01:00
fix: clean cache and go mod tidy for go1.25.3
This commit is contained in:
@@ -23,13 +23,14 @@ type jwks struct {
|
||||
}
|
||||
|
||||
// JWKSHandler godoc
|
||||
// @ID getJWKS
|
||||
// @Summary Get JWKS
|
||||
// @Description Returns the JSON Web Key Set for token verification
|
||||
// @Tags Auth
|
||||
// @Produce json
|
||||
// @Success 200 {object} dto.JWKS
|
||||
// @Router /.well-known/jwks.json [get]
|
||||
//
|
||||
// @ID getJWKS
|
||||
// @Summary Get JWKS
|
||||
// @Description Returns the JSON Web Key Set for token verification
|
||||
// @Tags Auth
|
||||
// @Produce json
|
||||
// @Success 200 {object} dto.JWKS
|
||||
// @Router /.well-known/jwks.json [get]
|
||||
func JWKSHandler(w http.ResponseWriter, _ *http.Request) {
|
||||
out := dto.JWKS{Keys: make([]dto.JWK, 0)}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user