aboutsummaryrefslogtreecommitdiff
path: root/src/table/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/table/lib.rs')
-rw-r--r--src/table/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table/lib.rs b/src/table/lib.rs
index e2bf1f46..704f8f1e 100644
--- a/src/table/lib.rs
+++ b/src/table/lib.rs
@@ -3,9 +3,9 @@
#[macro_use]
extern crate log;
+pub mod crdt;
pub mod schema;
pub mod util;
-pub mod crdt;
pub mod table;
pub mod table_fullcopy;
@@ -13,5 +13,5 @@ pub mod table_sharded;
pub mod table_sync;
pub use schema::*;
-pub use util::*;
pub use table::*;
+pub use util::*;