mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-06 19:40:42 -05:00
109b23966c
go-jwt/jwt to v5.2.1 MicahParks/keyfunc to v2.1.0
10 lines
222 B
Go
10 lines
222 B
Go
package middleware
|
|
|
|
import "github.com/golang-jwt/jwt/v5"
|
|
|
|
// Claims contains the jwt registered claims plus the used WOPI context
|
|
type Claims struct {
|
|
WopiContext WopiContext `json:"WopiContext"`
|
|
jwt.RegisteredClaims
|
|
}
|