...
1package int64support;
2
3import "github.com/gogo/protobuf/gogoproto/gogo.proto";
4
5option go_package = "int64support";
6option (gogoproto.benchgen_all) = true;
7option (gogoproto.enum_stringer_all) = true;
8option (gogoproto.equal_all) = true;
9option (gogoproto.goproto_enum_prefix_all) = false;
10option (gogoproto.goproto_enum_stringer_all) = false;
11option (gogoproto.goproto_stringer_all) = false;
12option (gogoproto.goproto_unrecognized_all) = false;
13option (gogoproto.gostring_all) = true;
14option (gogoproto.marshaler_all) = true;
15option (gogoproto.populate_all) = true;
16option (gogoproto.sizer_all) = true;
17option (gogoproto.stringer_all) = true;
18option (gogoproto.testgen_all) = true;
19option (gogoproto.unmarshaler_all) = true;
20option (gogoproto.verbose_equal_all) = true;
21
22message Object {
23 optional int64 optional_number = 1;
24}
View as plain text