Remove unused keyset struct
Brian Kassouf
6 years ago
27 | 27 | ) |
28 | 28 | |
29 | 29 | type Claims map[string]interface{} |
30 | ||
31 | type KeySet map[string]struct { | |
32 | Method jwt.SigningMethod | |
33 | Key []byte | |
34 | } | |
35 | 30 | |
36 | 31 | // Create a new JWT token generating middleware, specifying signing method and the claims |
37 | 32 | // you would like it to contain. Particularly useful for clients. |