1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-03-29 20:39:48 +02:00

18 lines
194 B
Protocol Buffer
Raw Normal View History

2015-05-09 00:42:07 +01:00
syntax = "proto3";
2015-01-13 23:31:27 +00:00
message Request {
2015-05-25 18:16:42 +01:00
string name = 1;
2015-01-13 23:31:27 +00:00
}
message Response {
2015-05-25 18:16:42 +01:00
string msg = 1;
2015-01-13 23:31:27 +00:00
}
message StreamingRequest {
int64 count = 1;
}
message StreamingResponse {
int64 count = 1;
}