mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 03:05:14 +00:00
17 lines
220 B
Protocol Buffer
17 lines
220 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package srv.test_example;
|
|
|
|
service Example {
|
|
rpc Call(Request) returns (Response) {}
|
|
}
|
|
|
|
message Request {
|
|
string name = 1;
|
|
bool caps = 2;
|
|
int64 number = 3;
|
|
}
|
|
|
|
message Response {
|
|
string msg = 1;
|
|
} |