Codebase list golang-github-go-kit-kit / 03649991-3798-4bdc-9a00-4ea873739e14/main transport / grpc / _grpc_test / pb / test.proto
03649991-3798-4bdc-9a00-4ea873739e14/main

Tree @03649991-3798-4bdc-9a00-4ea873739e14/main (Download .tar.gz)

test.proto @03649991-3798-4bdc-9a00-4ea873739e14/mainraw · 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;
}