diff options
Diffstat (limited to 'src/table/lib.rs')
-rw-r--r-- | src/table/lib.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/table/lib.rs b/src/table/lib.rs new file mode 100644 index 00000000..f490b491 --- /dev/null +++ b/src/table/lib.rs @@ -0,0 +1,11 @@ +#![recursion_limit = "1024"] + +#[macro_use] +extern crate log; + +pub mod table; +pub mod table_fullcopy; +pub mod table_sharded; +pub mod table_sync; + +pub use table::*; |