package config type Jwt struct { Token Token `mapstructure:"token"` TokenOrder Token `mapstructure:"token-order"` } type Token struct { ExpiresTTL int `mapstructure:"expires-ttl"` Secret string `mapstructure:"secret"` }