8 lines
131 B
Protocol Buffer
8 lines
131 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Test {
|
|
repeated int32 counts = 1;
|
|
repeated sint64 signed = 2;
|
|
repeated double fixed = 3;
|
|
}
|