2024-10-18 17:19:19 +08:00

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"`
}