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
18 lines
194 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Request {
|
|
string name = 1;
|
|
}
|
|
|
|
message Response {
|
|
string msg = 1;
|
|
}
|
|
|
|
message StreamingRequest {
|
|
int64 count = 1;
|
|
}
|
|
|
|
message StreamingResponse {
|
|
int64 count = 1;
|
|
}
|