1//! The most basic form of `stack-db` on which everything else can be built upon 2//! 3//! (Only deals with **binary data** and **indexes**, like *memory*) 4 5pub mod layer; 6pub mod database;