frostfs-api-go/util/proto/test/test.proto
Alex Vanin f8482381fd Add stable marshaller helper for ints
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
2020-09-18 10:41:01 +03:00

13 lines
No EOL
235 B
Protocol Buffer

syntax = "proto3";
package test;
message Primitives {
bytes field_a = 1;
string field_b = 2;
bool field_c = 200;
int32 field_d = 201;
uint32 field_e = 202;
int64 field_f = 203;
uint64 field_g = 204;
}