type Redis struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
Username string `yaml:"username"`
Password string `yaml:"password"`
DbName int `yaml:"dbName"`
}
type Token struct {
TokenSigningKey string `yaml:"tokenSigningKey"`
TokenExpiresDuration int `yaml:"tokenExpiresDuration"`
TokenRefreshDuration int `yaml:"tokenRefreshDuration"`
}