【更新】更新pg代码生成

This commit is contained in:
PandaGoAdmin
2022-08-19 17:58:02 +08:00
parent f0e235d22f
commit cf97d854d8
11 changed files with 231 additions and 2 deletions

8
pkg/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"`
}