mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-30 08:06:40 +02:00
14 lines
156 B
Protocol Buffer
14 lines
156 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
service Test {
|
|
rpc Call(Request) returns (Response) {}
|
|
}
|
|
|
|
message Request {
|
|
string name = 1;
|
|
}
|
|
|
|
message Response {
|
|
string msg = 1;
|
|
}
|