mirror of
https://github.com/go-micro/go-micro.git
synced 2025-04-04 20:44:27 +02:00
22 lines
232 B
Protocol Buffer
22 lines
232 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Message {
|
|
string say = 1;
|
|
}
|
|
|
|
message Request {
|
|
string name = 1;
|
|
}
|
|
|
|
message Response {
|
|
string msg = 1;
|
|
}
|
|
|
|
message StreamingRequest {
|
|
int64 count = 1;
|
|
}
|
|
|
|
message StreamingResponse {
|
|
int64 count = 1;
|
|
}
|