diff options
author | Alex Auvolat <alex@adnab.me> | 2020-07-07 13:59:22 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-07-07 13:59:22 +0200 |
commit | bec26a13129d8215d5ff97ad0cf587f6572f67ac (patch) | |
tree | 8a183bb7f1c4878c2ccc8a53ff799318647540e5 /src/model/lib.rs | |
parent | f0918b377e428f4d7a6afa341cb92bc49dfcac1b (diff) | |
download | garage-bec26a13129d8215d5ff97ad0cf587f6572f67ac.tar.gz garage-bec26a13129d8215d5ff97ad0cf587f6572f67ac.zip |
Rename garage_core to garage_model
Diffstat (limited to 'src/model/lib.rs')
-rw-r--r-- | src/model/lib.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/model/lib.rs b/src/model/lib.rs new file mode 100644 index 00000000..b4a8ddb7 --- /dev/null +++ b/src/model/lib.rs @@ -0,0 +1,10 @@ +#[macro_use] +extern crate log; + +pub mod block; +pub mod block_ref_table; +pub mod bucket_table; +pub mod garage; +pub mod key_table; +pub mod object_table; +pub mod version_table; |