Codebase list golang-github-go-kit-kit / d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.9.0 transport / grpc / _grpc_test / pb / test.proto
d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.9.0

Tree @d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.9.0 (Download .tar.gz)

test.proto @d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.9.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;
}