2020-11-27 17:46:05 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package helloworld;
|
2021-10-27 01:24:35 +03:00
|
|
|
option go_package = "go.unistack.org/micro-tests/codec/segmentio/proto;pb";
|
2020-11-27 17:46:05 +03:00
|
|
|
|
|
|
|
service Test {
|
|
|
|
rpc Call(Request) returns (Response) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
message Request {
|
|
|
|
string uuid = 1;
|
|
|
|
string name = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Response {
|
|
|
|
string msg = 1;
|
|
|
|
}
|