surrealpatch/src/lib.rs

17 lines
190 B
Rust
Raw Normal View History

2021-03-29 15:43:37 +00:00
#[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
}