mirror of
https://github.com/taigrr/bitcask
synced 2026-03-26 21:22:21 -07:00
11 lines
130 B
Protocol Buffer
11 lines
130 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package proto;
|
|
|
|
message Entry {
|
|
uint32 Checksum = 1;
|
|
string Key = 2;
|
|
int64 Offset = 3;
|
|
bytes Value = 4;
|
|
}
|