redisConfig.go 170 B

12345678
  1. package config
  2. type RedisConfig struct {
  3. Host string `yaml:"host"`
  4. Port int `yaml:"port"`
  5. Password string `yaml:"password"`
  6. Db int `yaml:"db"`
  7. }