上传基类模块接口定义类型转换异常的bug修复

This commit is contained in:
liwei1dao 2022-06-14 14:23:20 +08:00
parent 7025402736
commit 11a63977c3

View File

@ -4,7 +4,7 @@ import (
"go_dreamfactory/lego/core"
"go_dreamfactory/pb"
"google.golang.org/protobuf/proto"
"github.com/golang/protobuf/proto"
)
type (
@ -15,9 +15,9 @@ type (
Cache() ICache_Comp
DB() IDB_Comp
Configure() IConfigure_Comp
///向指定用户发送消息
// ///向指定用户发送消息
SendMsgToUser(mainType, subType string, msg proto.Message, user *pb.Cache_UserData) (err error)
///向多个用户发送消息
// ///向多个用户发送消息
SendMsgToUsers(mainType, subType string, msg proto.Message, user ...*pb.Cache_UserData) (err error)
}
IAPI_Comp interface {