mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-26 04:47:45 +08:00
13 lines
155 B
Protocol Buffer
13 lines
155 B
Protocol Buffer
package merkledag;
|
|
|
|
message PBData {
|
|
enum DataType {
|
|
Raw = 0;
|
|
Directory = 1;
|
|
File = 2;
|
|
}
|
|
|
|
required DataType Type = 1;
|
|
optional bytes Data = 2;
|
|
}
|