syntax = "proto3"; package chat; import "messages.proto"; service Chat { rpc sendMsg(stream chatMsg) returns (stream chatMsg) {} }