抽离配置到nacos里

This commit is contained in:
2026-08-12 16:04:04 +08:00
parent c8372f9b79
commit 92c30163b5
13 changed files with 356 additions and 644 deletions
+2 -1
View File
@@ -4,6 +4,7 @@ import (
"admin/internal/config"
"gorm.io/gorm"
"pkg.local/utils"
)
type ServiceContext struct {
@@ -16,6 +17,6 @@ func NewServiceContext(c config.Config, db *gorm.DB) *ServiceContext {
return &ServiceContext{
Config: c,
DB: db,
Prefix: c.Mysql.Prefix,
Prefix: utils.GetConfigString("mysql.prefix"),
}
}