chore: add a single message to signal server

This commit is contained in:
braginini 2021-04-19 14:15:59 +02:00
parent 3a02cc3903
commit 8ca77faab5

View File

@ -30,7 +30,7 @@ func NewServer() *SignalExchangeServer {
}
func (s *SignalExchangeServer) Connect(context.Context, *proto.Message) (*proto.Message, error) {
return nil, status.Errorf(codes.Unimplemented, "method Receive not implemented")
return &proto.Message{}, nil
}
func (s *SignalExchangeServer) ConnectStream(stream proto.SignalExchange_ConnectStreamServer) error {