package comm /* 业务模块 对外接口定义处 */ type ( //邮件业务模块对外接口定义 提供给其他模块使用的 Imail interface { CreateNewMail(uId string) } //背包模块对外接口定义 提供给其他模块使用的 IPack interface { //GetRewaredItems(uId string, itmes map[uint32]uint32) bool } )