Codebase list golang-github-go-kit-kit / run/dff50435-7a33-4f0c-bbdc-f455eb10d80a/main transport / grpc / _grpc_test / pb / test.proto
run/dff50435-7a33-4f0c-bbdc-f455eb10d80a/main

Tree @run/dff50435-7a33-4f0c-bbdc-f455eb10d80a/main (Download .tar.gz)

test.proto @run/dff50435-7a33-4f0c-bbdc-f455eb10d80a/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;
}