diff options
Diffstat (limited to 'src/table/lib.rs')
-rw-r--r-- | src/table/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/table/lib.rs b/src/table/lib.rs index f490b491..e30a6665 100644 --- a/src/table/lib.rs +++ b/src/table/lib.rs @@ -3,9 +3,11 @@ #[macro_use] extern crate log; +pub mod schema; pub mod table; pub mod table_fullcopy; pub mod table_sharded; pub mod table_sync; pub use table::*; +pub use schema::*; |