mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
11 lines
144 B
Protocol Buffer
11 lines
144 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message WsDocumentData {
|
||
|
string id = 1;
|
||
|
WsSource source = 2;
|
||
|
bytes data = 3;
|
||
|
}
|
||
|
enum WsSource {
|
||
|
Delta = 0;
|
||
|
}
|