You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
296 B
Go

2 years ago
package in_obj
import "app/service/main/message/pb"
type IGameMgr interface {
Login(appId string, token string) (string, string, string, pb.ERROR_CODE)
StartTask(appId string, roomId string, msgType string) pb.ERROR_CODE
StopTask(appId string, roomId string, msgType string) pb.ERROR_CODE
}