diff options
author | Alex Auvolat <alex@adnab.me> | 2020-04-10 23:11:52 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-04-10 23:11:52 +0200 |
commit | cf8fd948fc4bb6a9f48100ebf89df3752371805d (patch) | |
tree | 77fcb45f80ab75da2e5cdf520a50ab7192f9e25c /src/data.rs | |
parent | ff4fb9756810abeff17c360f3055c3865160b240 (diff) | |
download | garage-cf8fd948fc4bb6a9f48100ebf89df3752371805d.tar.gz garage-cf8fd948fc4bb6a9f48100ebf89df3752371805d.zip |
Add block ref table
Diffstat (limited to 'src/data.rs')
-rw-r--r-- | src/data.rs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/data.rs b/src/data.rs index 62aba0a1..fd7f9a8b 100644 --- a/src/data.rs +++ b/src/data.rs @@ -129,15 +129,6 @@ pub struct NetworkConfigEntry { pub const INLINE_THRESHOLD: usize = 3072; -#[derive(Debug, Serialize, Deserialize)] -pub struct SplitpointMeta { - pub bucket: String, - pub key: String, - - pub timestamp: u64, - pub uuid: UUID, - pub deleted: bool, -} - +pub use crate::block_ref_table::*; pub use crate::object_table::*; pub use crate::version_table::*; |