1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-02-04 18:21:53 +02:00
2020-12-26 15:17:20 +00:00

15 lines
233 B
Protocol Buffer

syntax = "proto3";
service Streamer {
rpc Stream(stream Request) returns (stream Response) {}
rpc ServerStream(Request) returns (stream Response) {}
}
message Request {
int64 count = 1;
}
message Response {
int64 count = 1;
}