mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-27 13:31:02 +08:00
10 lines
110 B
Protocol Buffer
10 lines
110 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message Int {
|
||
|
repeated int32 int = 1;
|
||
|
}
|
||
|
|
||
|
message Boolean {
|
||
|
repeated bool boolean = 1;
|
||
|
}
|