mirror of
https://gitee.com/winc-link/hummingbird.git
synced 2025-04-21 08:52:42 +00:00
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
|
|
}
|