This commit is contained in:
liwei1dao 2023-09-08 15:11:30 +08:00
parent 203c146049
commit 35003a0d66
4 changed files with 10 additions and 0 deletions

View File

@ -26,6 +26,7 @@ func (this *ModuleRobot_Chat) Receive(robot IRobot, stype string, message proto.
return return
} }
func (this *ModuleRobot_Chat) OncePipeline(robot IRobot) (err error) { func (this *ModuleRobot_Chat) OncePipeline(robot IRobot) (err error) {
return return
} }

View File

@ -49,6 +49,9 @@ func (this *ModuleRobot_Pagoda) Receive(robot IRobot, stype string, message prot
return return
} }
func (this *ModuleRobot_Pagoda) OncePipeline(robot IRobot) (err error) {
return
}
//机器人执行流 //机器人执行流
func (this *ModuleRobot_Pagoda) DoPipeline(robot IRobot) (err error) { func (this *ModuleRobot_Pagoda) DoPipeline(robot IRobot) (err error) {

View File

@ -40,6 +40,9 @@ func (this *ModuleRobot_Smithy) Receive(robot IRobot, stype string, message prot
} }
return return
} }
func (this *ModuleRobot_Smithy) OncePipeline(robot IRobot) (err error) {
return
}
//机器人执行流 //机器人执行流
func (this *ModuleRobot_Smithy) DoPipeline(robot IRobot) (err error) { func (this *ModuleRobot_Smithy) DoPipeline(robot IRobot) (err error) {

View File

@ -34,6 +34,9 @@ func (this *ModuleRobot_Sys) Receive(robot IRobot, stype string, message proto.M
} }
return return
} }
func (this *ModuleRobot_Sys) OncePipeline(robot IRobot) (err error) {
return
}
//机器人执行流 //机器人执行流
func (this *ModuleRobot_Sys) DoPipeline(robot IRobot) (err error) { func (this *ModuleRobot_Sys) DoPipeline(robot IRobot) (err error) {