mirror of
https://github.com/hexedtech/codemp-proto.git
synced 2024-12-23 13:54:53 +01:00
15 lines
288 B
Protocol Buffer
15 lines
288 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package files;
|
|
|
|
// A message representing a node in the filetree.
|
|
message BufferNode {
|
|
// The path of a buffer.
|
|
required string path = 1;
|
|
}
|
|
|
|
// A message representing a filetree.
|
|
message BufferTree {
|
|
// A vector of buffer nodes.
|
|
repeated BufferNode buffers = 1;
|
|
}
|