syntax = "proto3"; package pb; service Test { rpc Test(stream Request) returns (stream Response){} } message Request { string msg = 1; } message Response { string msg = 1; }