9 lines
173 B
Go
9 lines
173 B
Go
package config
|
|
|
|
import "time"
|
|
|
|
type Jwt struct {
|
|
PrivateKey string `mapstructure:"private-key"`
|
|
ExpireDuration time.Duration `mapstructure:"expire-duration"`
|
|
}
|