mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
12 lines
166 B
Protocol Buffer
12 lines
166 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message WebSocketRawMessage {
|
|
WSChannel channel = 1;
|
|
bytes data = 2;
|
|
}
|
|
enum WSChannel {
|
|
Document = 0;
|
|
Folder = 1;
|
|
Grid = 2;
|
|
}
|