surrealpatch/src/main.rs

22 lines
212 B
Rust
Raw Normal View History

2020-06-29 15:36:01 +00:00
#[macro_use]
extern crate log;
#[macro_use]
mod mac;
2020-06-29 15:36:01 +00:00
mod cli;
mod cnf;
2021-03-29 15:43:37 +00:00
mod ctx;
2020-06-29 15:36:01 +00:00
mod dbs;
2021-03-29 15:43:37 +00:00
mod doc;
2020-06-29 15:36:01 +00:00
mod err;
2021-03-29 15:43:37 +00:00
mod fnc;
mod key;
2020-06-29 15:36:01 +00:00
mod kvs;
mod sql;
mod web;
fn main() {
cli::init(); // Initiate the command line
}