12 lines
151 B
Protocol Buffer
12 lines
151 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Test {
|
|
int32 for = 1;
|
|
int32 with = 2;
|
|
int32 as = 3;
|
|
}
|
|
|
|
service TestService {
|
|
rpc GetTest(Test) returns (Test) {}
|
|
}
|