29 lines
555 B
Go
29 lines
555 B
Go
package svc
|
|
|
|
import (
|
|
"lone-services/pkg/utils"
|
|
"lone-services/services/wecom/internal/config"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type ServiceContext struct {
|
|
Config config.Config
|
|
DB *gorm.DB
|
|
SaleSvcName string
|
|
}
|
|
|
|
func NewServiceContext(c config.Config, db *gorm.DB) *ServiceContext {
|
|
saleSvc := utils.GetConfigString("services.sale")
|
|
if saleSvc == utils.StringEmpty {
|
|
logx.Error("config services.sale empty")
|
|
}
|
|
|
|
return &ServiceContext{
|
|
Config: c,
|
|
DB: db,
|
|
SaleSvcName: saleSvc,
|
|
}
|
|
}
|