commit eb46d42c6f736d7ae083cf955781f2fc5b4fcc80 parent 32b0e572e418b81af515224cc7eb3b1e8598d906 Author: William Casarin <jb55@jb55.com> Date: Thu, 20 Jul 2023 00:59:53 -0700 flatbuffers: remove nostr_index.fbs we're not using flatbuffers anymore Diffstat:
D | nostr_index.fbs | | | 32 | -------------------------------- |
1 file changed, 0 insertions(+), 32 deletions(-)
diff --git a/nostr_index.fbs b/nostr_index.fbs @@ -1,32 +0,0 @@ -namespace NostrIndex; - -struct Fixed32Bytes { - val: [ubyte:32]; -} - -struct Fixed64Bytes { - val: [ubyte:64]; -} - -table TagGeneral { - key: uint8; - val: [ubyte]; -} - -table TagFixed32 { - key: uint8; - val: Fixed32Bytes; -} - -table Event { - id: Fixed32Bytes; - pubkey: Fixed32Bytes; - created_at: uint64; - kind: uint64; - tagsGeneral: [TagGeneral]; - tagsFixed32: [TagFixed32]; - signature: Fixed64Bytes; -} - -table Empty {} -root_type Empty;