9 lines
164 B
Go
9 lines
164 B
Go
|
package config
|
||
|
|
||
|
type redis struct {
|
||
|
Host string `yaml:"host"`
|
||
|
Port int `yaml:"port"`
|
||
|
Password string `yaml:"password"`
|
||
|
Db int `yaml:"db"`
|
||
|
}
|