aditya.siregar 67f1dbc850 init project
2024-05-28 14:14:55 +07:00

11 lines
186 B
Go

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