Codebase list golang-github-go-kit-kit / 2677e49 transport / grpc / _pb / test.proto
2677e49

Tree @2677e49 (Download .tar.gz)

test.proto @2677e49raw · 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;
}