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