初始化2

This commit is contained in:
SunYF
2026-08-28 15:06:01 +08:00
parent b34325a16f
commit a9c3fbeb41
537 changed files with 176215 additions and 17 deletions
+17
View File
@@ -0,0 +1,17 @@
package db
import "context"
// DatabaseConf PostgreSQL 连接配置
type DatabaseConf struct {
Host string
Port int
User string
Password string
Dbname string
Debug bool
}
func contextBackdrop() context.Context {
return context.Background()
}