11 lines
129 B
Protocol Buffer
11 lines
129 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package test;
|
|
|
|
service Test {
|
|
rpc UnaryCall(Input) returns (Output);
|
|
}
|
|
|
|
message Input {}
|
|
message Output {}
|