reids.go 164 B

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