mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-12 03:37:59 +08:00
14 lines
265 B
Protocol Buffer
14 lines
265 B
Protocol Buffer
package namesys.pb;
|
|
|
|
message IpnsEntry {
|
|
enum ValidityType {
|
|
// setting an EOL says "this record is valid until..."
|
|
EOL = 0;
|
|
}
|
|
required bytes value = 1;
|
|
required bytes signature = 2;
|
|
|
|
optional ValidityType validityType = 3;
|
|
optional bytes validity = 4;
|
|
}
|