mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
Also: * Switch to gogo for filestore for consistency. * Use the "faster" codegen for fewer allocations. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
10 lines
171 B
Protocol Buffer
10 lines
171 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package datastore.pb;
|
|
|
|
message DataObj {
|
|
optional string FilePath = 1;
|
|
optional uint64 Offset = 2;
|
|
optional uint64 Size = 3;
|
|
}
|