locust/examples/grpc/hello.proto

16 lines
219 B
Protocol Buffer

syntax = "proto3";
package locust.hello;
service HelloService {
rpc SayHello (HelloRequest) returns (HelloResponse) {}
}
message HelloRequest {
string name = 1;
}
message HelloResponse {
string message = 1;
}