10 lines
197 B
Go
Raw Permalink Normal View History

2024-10-18 17:19:19 +08:00
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"`
}