10 lines
102 B
Go
10 lines
102 B
Go
|
package jwk
|
||
|
|
||
|
type Key interface {
|
||
|
SymmetricKey
|
||
|
}
|
||
|
|
||
|
type Set[T Key] struct {
|
||
|
Keys []T `json:"keys"`
|
||
|
}
|