13 lines
186 B
Protocol Buffer
13 lines
186 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "google/protobuf/empty.proto";
|
|
|
|
package result;
|
|
|
|
service Result {
|
|
rpc Listen(google.protobuf.Empty) returns (Reply) {}
|
|
}
|
|
|
|
message Reply {
|
|
int32 step = 1;
|
|
} |