- package config
- type App struct {
- Port string `mapstructure:"port" json:"port" yaml:"port"`
- JwtSecret string `mapstructure:"jwt_secret" json:"jwt_secret" yaml:"jwt_secret"`
- TokenExpireDuration int64 `mapstructure:"token_expire_duration" json:"token_expire_duration" yaml:"token_expire_duration"`
- }
|