blob: ac1291469cf31e9cb8bee8006a93c96f90d37a8e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![recursion_limit = "1024"]
#[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 schema::*;
pub use table::*;
|