Many fixes later

This commit is contained in:
2026-05-17 00:43:21 -07:00
parent b11b068345
commit 89455190b1
8 changed files with 671 additions and 4 deletions
+26
View File
@@ -0,0 +1,26 @@
syntax = "proto3";
package interop;
service InteropService {
// Expected to succeed
rpc UnaryCall (UnaryRequest) returns (UnaryResponse);
// Expected to fail (roto does not support streaming)
rpc StreamingCall (StreamingRequest) returns (stream StreamingResponse);
}
message UnaryRequest {
string message = 1;
}
message UnaryResponse {
string reply = 1;
}
message StreamingRequest {
string query = 1;
}
message StreamingResponse {
string item = 1;
}