type Cache struct {
Provider string `yaml:"provider"`
Host string `yaml:"host"`
Port int `yaml:"port"`
User string `yaml:"user"`
Pass string `yaml:"pass"`
}
type Store struct {
Provider string `yaml:"provider"`
Host string `yaml:"host"`
Port int `yaml:"port"`
Path string `yaml:"path"`
User string `yaml:"user"`
Pass string `yaml:"pass"`
}