mirror of
https://github.com/gogrlx/bitcask.git
synced 2026-04-02 02:58:59 -07:00
11 lines
129 B
Protocol Buffer
11 lines
129 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package proto;
|
|
|
|
message Entry {
|
|
uint32 Checksum = 1;
|
|
bytes Key = 2;
|
|
int64 Offset = 3;
|
|
bytes Value = 4;
|
|
}
|