17 lines
190 B
Rust
17 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
|
||
|
}
|