mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-20 06:40:42 +00:00
22 lines
329 B
Protocol Buffer
22 lines
329 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message CreateDocParams {
|
|
string id = 1;
|
|
bytes data = 2;
|
|
}
|
|
message Doc {
|
|
string id = 1;
|
|
bytes data = 2;
|
|
}
|
|
message SaveDocParams {
|
|
string id = 1;
|
|
bytes data = 2;
|
|
}
|
|
message ApplyChangesetParams {
|
|
string id = 1;
|
|
bytes data = 2;
|
|
}
|
|
message QueryDocParams {
|
|
string doc_id = 1;
|
|
}
|