codemp/proto/buffer.proto

15 lines
313 B
Protocol Buffer
Raw Normal View History

2023-12-18 23:36:15 +01:00
syntax = "proto2";
package buffer;
2023-12-18 23:36:15 +01:00
// handle buffer changes, keep in sync users
service Buffer {
// attach to a buffer and receive operations
2024-02-01 01:58:27 +01:00
rpc Attach (stream Operation) returns (stream Operation);
2023-12-18 23:36:15 +01:00
}
message Operation {
required bytes data = 1;
optional string user = 2;
optional string path = 3;
}