10 lines
139 B
Go
10 lines
139 B
Go
|
package middleware
|
||
|
|
||
|
import "github.com/dgrijalva/jwt-go"
|
||
|
|
||
|
type CustomClaims struct {
|
||
|
ID uint
|
||
|
Username string
|
||
|
jwt.StandardClaims
|
||
|
}
|