2025-09-18 01:32:01 +07:00

16 lines
299 B
Go

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