18 lines
404 B
Go
18 lines
404 B
Go
package comm
|
|
|
|
/*
|
|
业务模块 对外接口定义处
|
|
*/
|
|
|
|
type (
|
|
//邮件业务模块对外接口定义 提供给其他模块使用的
|
|
Imail interface {
|
|
CreateNewMail(uId string)
|
|
}
|
|
//背包模块对外接口定义 提供给其他模块使用的
|
|
IPack interface {
|
|
///添加多个物品到背包 (可以加物品和减物品)
|
|
AddItemsToUserPack(uId string, items map[int32]int32) (err error)
|
|
}
|
|
)
|