This commit is contained in:
wh_zcy 2022-08-29 18:48:31 +08:00
parent f99145deac
commit 1d7d54f745
2 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ type (
// 随机任务
IRtask interface {
//任务触发
SendToRtask(session IUserSession, rtaskType int32, params ...interface{}) (code pb.ErrorCode)
SendToRtask(session IUserSession, rtaskType int32, params ...int32) (code pb.ErrorCode)
}
//好友

View File

@ -114,6 +114,6 @@ func (this *ModuleRtask) initRtaskHandle() {
}
}
func SendToRtask(session comm.IUserSession, rtaskType int32, params ...interface{}) (code pb.ErrorCode) {
func SendToRtask(session comm.IUserSession, rtaskType int32, params ...int32) (code pb.ErrorCode) {
return
}