grpctestify 1.4.9

gRPC testing utility written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
syntax = "proto3";
package test;
service TestService {
  rpc Test (TestRequest) returns (TestResponse);
}
message TestRequest {
  string name = 1;
}
message TestResponse {
  string message = 1;
}