mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-09-15 03:27:49 +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;
|
||
|
}
|