This commit is contained in:
coward
2024-03-05 16:59:37 +08:00
commit 0e20f5068e
13 changed files with 445 additions and 0 deletions

8
config/redis.go Normal file
View File

@@ -0,0 +1,8 @@
package config
type redis struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
Password string `yaml:"password"`
Db int `yaml:"db"`
}