mirror of
https://github.com/hoytech/strfry.git
synced 2025-06-21 02:00:45 +00:00
18 lines
218 B
Plaintext
18 lines
218 B
Plaintext
namespace NostrIndex;
|
|
|
|
table Tag {
|
|
key: uint8;
|
|
val: [ubyte];
|
|
}
|
|
|
|
table Event {
|
|
id: [ubyte];
|
|
pubkey: [ubyte];
|
|
created_at: uint64;
|
|
kind: uint64;
|
|
tags: [Tag];
|
|
}
|
|
|
|
table Empty {}
|
|
root_type Empty;
|