From f5929d44dee9175204d8e75f8e2eeb03f6c8d1ef Mon Sep 17 00:00:00 2001 From: guzeng Date: Tue, 9 Nov 2021 10:00:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0pb.go?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- msg.pb.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/msg.pb.go b/msg.pb.go index a3fdb1a..66bc3a5 100644 --- a/msg.pb.go +++ b/msg.pb.go @@ -99,6 +99,7 @@ func init() { type MsgRpcService interface { SendMsg(in *Request, out *Response) error + SendNotcie(in *Request, out *Response) error } // AcceptMsgRpcServiceClient accepts connections on the listener and serves requests @@ -173,6 +174,9 @@ func NewMsgRpcServiceClient(conn io.ReadWriteCloser) (*MsgRpcServiceClient, *rpc func (c *MsgRpcServiceClient) SendMsg(in *Request, out *Response) error { return c.Call("MsgRpcService.SendMsg", in, out) } +func (c *MsgRpcServiceClient) SendNotcie(in *Request, out *Response) error { + return c.Call("MsgRpcService.SendNotcie", in, out) +} // DialMsgRpcService connects to an MsgRpcService at the specified network address. func DialMsgRpcService(network, addr string) (*MsgRpcServiceClient, *rpc.Client, error) {