cache.go 235 B

12345678910
  1. package config
  2. type Cache struct {
  3. Type string
  4. RedisAddr string `mapstructure:"redis-addr"`
  5. RedisPwd string `mapstructure:"redis-pwd"`
  6. RedisDb int `mapstructure:"redis-db"`
  7. FileDir string `mapstructure:"file-dir"`
  8. }