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