influxdb/grpc-binary-logger-test-proto/proto/test.proto

13 lines
257 B
Protocol Buffer

syntax = "proto3";
package test;
service Test {
rpc TestUnary(TestRequest) returns (TestResponse);
rpc TestStream(TestRequest) returns (stream TestResponse);
}
message TestRequest { uint64 question = 1; }
message TestResponse { uint64 answer = 1; }