mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-12 02:42:00 +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;
|
|
}
|