Codebase list golang-github-go-kit-kit / f9d8373b-9935-4125-b2b2-694ccabcf82b/v0.10.0 transport / grpc / _grpc_test / pb / test.proto
f9d8373b-9935-4125-b2b2-694ccabcf82b/v0.10.0

Tree @f9d8373b-9935-4125-b2b2-694ccabcf82b/v0.10.0 (Download .tar.gz)

test.proto @f9d8373b-9935-4125-b2b2-694ccabcf82b/v0.10.0raw · history · blame

syntax = "proto3";

package pb;

service Test {
  rpc Test (TestRequest) returns (TestResponse) {}
}

message TestRequest {
  string a = 1;
  int64 b = 2;
}

message TestResponse {
  string v = 1;
}