7 lines
115 B
Go
7 lines
115 B
Go
|
package jwt
|
||
|
|
||
|
type Config struct {
|
||
|
Secret string `comment:"密钥"`
|
||
|
Expire int64 `comment:"超时时间(秒)"`
|
||
|
}
|