nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

eclectic.fbs (322B)


      1         namespace Eclectic;
      2 
      3         enum Fruit : byte { Banana = -1, Orange = 42 }
      4         table FooBar {
      5             meal      : Fruit = Banana;
      6             density   : long (deprecated);
      7             say       : string;
      8             height    : short;
      9         }
     10         file_identifier "NOOB";
     11         root_type FooBar;
     12