Files
strfry/fbs/nostr-index.fbs
2023-01-09 15:33:52 -05:00

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;