mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 15:24:48 +01:00
16 lines
No EOL
295 B
Protocol Buffer
16 lines
No EOL
295 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package files;
|
|
|
|
message BufferNode {
|
|
required string path = 1;
|
|
}
|
|
|
|
message BufferTree {
|
|
repeated BufferNode buffers = 1;
|
|
}
|
|
|
|
message WorkspaceFileTree {
|
|
// list of strings may be more efficient but it's a lot more hassle
|
|
required string payload = 1; // spappolata di json
|
|
} |