db service

This commit is contained in:
meixiongfeng 2022-07-01 15:19:57 +08:00
parent bd6d48b33d
commit ab0809dcf1

View File

@ -3,7 +3,7 @@ package dbservice
import ( import (
"go_dreamfactory/comm" "go_dreamfactory/comm"
"go_dreamfactory/lego/core" "go_dreamfactory/lego/core"
"go_dreamfactory/modules" "go_dreamfactory/lego/core/cbase"
) )
func NewModule() core.IModule { func NewModule() core.IModule {
@ -12,7 +12,7 @@ func NewModule() core.IModule {
} }
type DBService struct { type DBService struct {
modules.ModuleBase cbase.ModuleBase
db_comp *DB_Comp db_comp *DB_Comp
} }