diff --git a/protos/ChatProto.proto b/protos/ChatProto.proto index 588c74c..4f6055d 100644 --- a/protos/ChatProto.proto +++ b/protos/ChatProto.proto @@ -38,7 +38,11 @@ message SendChatInfoReqest { optional string message = 2; //聊天内容 optional int32 friendId = 3; // 接受聊天的好友id } +message SendChatInfoResponse { + optional ChatInfo chatInfo = 1; +} message SendChatInfoIndication { optional ChatInfo chatInfo = 1; -} \ No newline at end of file +} +