10 lines
197 B
Go
10 lines
197 B
Go
|
package config
|
||
|
|
||
|
type cache struct {
|
||
|
Driver string `yaml:"driver"`
|
||
|
Host string `yaml:"host"`
|
||
|
Port int `yaml:"port"`
|
||
|
Password string `yaml:"password"`
|
||
|
Db int `yaml:"db"`
|
||
|
}
|