surrealpatch/src/main.rs
2022-02-09 15:55:04 +00:00

21 lines
212 B
Rust

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