9 lines
221 B
Go
9 lines
221 B
Go
|
package conf
|
||
|
|
||
|
type Redis struct {
|
||
|
Host string `json:"host" yaml:"host"`
|
||
|
Port int `json:"port" yaml:"port"`
|
||
|
Database int `json:"database" yaml:"database"`
|
||
|
Password string `json:"password" yaml:"password"`
|
||
|
}
|