surrealpatch/src/lib.rs
2021-12-14 10:24:54 +00:00

16 lines
190 B
Rust

#[macro_use]
extern crate maplit;
#[macro_use]
extern crate log;
mod ctx;
mod dbs;
mod doc;
mod err;
mod fnc;
mod kvs;
mod sql;
fn main() {
// cli::init(); // Initiate the command line
}