mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-07-27 08:18:56 +00:00
14 lines
198 B
Rust
14 lines
198 B
Rust
#![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 table::*;
|
|
pub use schema::*;
|