- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
31 lines
556 B
Protocol Buffer
31 lines
556 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Data {
|
|
enum DataType {
|
|
Raw = 0;
|
|
Directory = 1;
|
|
File = 2;
|
|
Metadata = 3;
|
|
Symlink = 4;
|
|
HAMTShard = 5;
|
|
}
|
|
|
|
optional DataType Type = 1;
|
|
optional bytes Data = 2;
|
|
optional uint64 filesize = 3;
|
|
repeated uint64 blocksizes = 4;
|
|
optional uint64 hashType = 5;
|
|
optional uint64 fanout = 6;
|
|
optional uint32 mode = 7;
|
|
optional UnixTime mtime = 8;
|
|
}
|
|
|
|
message UnixTime {
|
|
optional int64 Seconds = 1;
|
|
optional fixed32 FractionalNanoseconds = 2;
|
|
}
|
|
|
|
message Metadata {
|
|
optional string MimeType = 1;
|
|
}
|