AppFlowy/rust-lib/flowy-document/src/protobuf/proto/ws.proto

12 lines
161 B
Protocol Buffer
Raw Normal View History

2021-09-21 07:07:07 +00:00
syntax = "proto3";
message WsDocumentData {
string id = 1;
WsDataType ty = 2;
2021-09-21 07:07:07 +00:00
bytes data = 3;
}
enum WsDataType {
Command = 0;
Delta = 1;
2021-09-21 07:07:07 +00:00
}