jwt.go 165 B

123456789
  1. package config
  2. import "time"
  3. type Jwt struct {
  4. Key string `mapstructure:"key"`
  5. ExpireDuration time.Duration `mapstructure:"expire-duration"`
  6. }