mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
10 lines
154 B
Protocol Buffer
10 lines
154 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Revision {
|
|
int64 base_rev_id = 1;
|
|
int64 rev_id = 2;
|
|
bytes delta = 3;
|
|
string md5 = 4;
|
|
string doc_id = 5;
|
|
}
|