garage/src/table/lib.rs

12 lines
163 B
Rust
Raw Normal View History

2020-04-24 10:10:01 +00:00
#![recursion_limit = "1024"]
#[macro_use]
extern crate log;
2020-04-23 17:05:46 +00:00
pub mod table;
pub mod table_fullcopy;
pub mod table_sharded;
pub mod table_sync;
pub use table::*;