12 lines
163 B
Protocol Buffer
12 lines
163 B
Protocol Buffer
syntax = "proto3";
|
|
package test;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
|
|
message Input {
|
|
}
|
|
|
|
service Service {
|
|
rpc Call(Input) returns (google.protobuf.Empty);
|
|
}
|