18 lines
272 B
Protocol Buffer
18 lines
272 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package helloworld;
|
|
option go_package = "go.unistack.org/micro-tests/codec/segmentio/proto;pb";
|
|
|
|
service Test {
|
|
rpc Call(Request) returns (Response) {}
|
|
}
|
|
|
|
message Request {
|
|
string uuid = 1;
|
|
string name = 2;
|
|
}
|
|
|
|
message Response {
|
|
string msg = 1;
|
|
}
|