go_dreamfactory/comm/imodule.go
2022-06-09 11:10:14 +08:00

17 lines
335 B
Go

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