2021-09-23 15:49:10 +08:00
|
|
|
syntax = "proto3";
|
2021-09-23 17:50:28 +08:00
|
|
|
|
2021-09-23 15:49:10 +08:00
|
|
|
message Revision {
|
|
|
|
int64 base_rev_id = 1;
|
|
|
|
int64 rev_id = 2;
|
|
|
|
bytes delta = 3;
|
|
|
|
string md5 = 4;
|
2021-09-23 19:59:58 +08:00
|
|
|
string doc_id = 5;
|
2021-09-23 15:49:10 +08:00
|
|
|
}
|