Codebase list golang-github-go-kit-kit / 78ef6c8 transport / grpc / _grpc_test / pb / test.proto
78ef6c8

Tree @78ef6c8 (Download .tar.gz)

test.proto @78ef6c8raw · 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;
}