Codebase list golang-github-go-kit-kit / c84463f
Remove unused keyset struct Brian Kassouf 7 years ago
1 changed file(s) with 0 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
2727 )
2828
2929 type Claims map[string]interface{}
30
31 type KeySet map[string]struct {
32 Method jwt.SigningMethod
33 Key []byte
34 }
3530
3631 // Create a new JWT token generating middleware, specifying signing method and the claims
3732 // you would like it to contain. Particularly useful for clients.