Files
bj_power/bj_power_wms/internal/db/config.go
T
2026-08-28 15:06:01 +08:00

18 lines
269 B
Go

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()
}