surrealpatch/src/lib.rs

20 lines
192 B
Rust
Raw Normal View History

2021-03-29 15:43:37 +00:00
#[macro_use]
extern crate log;
2022-01-13 17:53:30 +00:00
#[macro_use]
mod mac;
2022-01-13 17:39:17 +00:00
mod cnf;
2021-03-29 15:43:37 +00:00
mod ctx;
mod dbs;
mod doc;
mod err;
mod fnc;
2022-01-13 17:39:17 +00:00
mod key;
2021-03-29 15:43:37 +00:00
mod kvs;
mod sql;
fn main() {
2022-01-13 17:39:17 +00:00
// TODO: implement initiation from wasm
2021-03-29 15:43:37 +00:00
}