This commit is contained in:
meixiongfeng 2023-07-06 18:11:14 +08:00
commit 428e3030b9
3 changed files with 5 additions and 1 deletions

View File

@ -89,6 +89,8 @@ const (
ModuleActivity core.M_Modules = "acrivity" //活动
ModuleGuidance core.M_Modules = "guidance" //引导
ModuleWtask core.M_Modules = "wtask" //世界任务
ModulePasson core.M_Modules = "passon" //传功房
)
// 数据表名定义处

View File

@ -30,7 +30,7 @@ type Passon struct {
}
func (this *Passon) GetType() core.M_Modules {
return comm.ModuleMail
return comm.ModulePasson
}
func (this *Passon) OnInstallComp() {

View File

@ -34,6 +34,7 @@ import (
"go_dreamfactory/modules/oldtimes"
"go_dreamfactory/modules/pagoda"
"go_dreamfactory/modules/parkour"
"go_dreamfactory/modules/passon"
"go_dreamfactory/modules/pay"
"go_dreamfactory/modules/practice"
"go_dreamfactory/modules/privilege"
@ -128,6 +129,7 @@ func main() {
activity.NewModule(),
guidance.NewModule(),
wtask.NewModule(),
passon.NewModule(),
)
}