1
0
mirror of https://github.com/taigrr/bitcask synced 2025-01-18 04:03:17 -08:00
bitcask/internal/proto/entry.proto

11 lines
129 B
Protocol Buffer

syntax = "proto3";
package proto;
message Entry {
uint32 Checksum = 1;
bytes Key = 2;
int64 Offset = 3;
bytes Value = 4;
}