Add base library file for wasm build

This commit is contained in:
Tobie Morgan Hitchcock 2022-01-13 17:39:17 +00:00
parent f3de9095ae
commit ff6a41326a

View file

@ -1,16 +1,16 @@
#[macro_use] #[macro_use]
extern crate maplit;
#[macro_use]
extern crate log; extern crate log;
mod cnf;
mod ctx; mod ctx;
mod dbs; mod dbs;
mod doc; mod doc;
mod err; mod err;
mod fnc; mod fnc;
mod key;
mod kvs; mod kvs;
mod sql; mod sql;
fn main() { fn main() {
// cli::init(); // Initiate the command line // TODO: implement initiation from wasm
} }