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