2021-04-10 01:32:25 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package reflect;
|
|
|
|
|
2021-10-27 01:24:35 +03:00
|
|
|
option go_package = "go.unistack.org/micro-tests/util/reflect/proto;pb";
|
2021-04-10 01:32:25 +03:00
|
|
|
import "google/protobuf/wrappers.proto";
|
|
|
|
|
|
|
|
message CallReq {
|
|
|
|
string name = 1;
|
|
|
|
string req = 2;
|
|
|
|
string arg1 = 3;
|
|
|
|
uint64 arg2 = 4;
|
|
|
|
Nested nested = 5;
|
|
|
|
};
|
|
|
|
|
|
|
|
message Nested {
|
|
|
|
repeated string string_args = 1;
|
|
|
|
repeated google.protobuf.UInt64Value uint64_args = 2;
|
|
|
|
};
|