diff options
author | Alex Auvolat <alex@adnab.me> | 2023-11-16 13:26:43 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-11-16 13:26:43 +0100 |
commit | ad5c6f779f7fdfdc0569920c830c59197023515a (patch) | |
tree | 0b1a46a5a89c93678b330e52313d0e47299adf0e /src/rpc/layout/mod.rs | |
parent | d4df03424f1c7f3cc1eaba9e16d2e1d049131b97 (diff) | |
download | garage-ad5c6f779f7fdfdc0569920c830c59197023515a.tar.gz garage-ad5c6f779f7fdfdc0569920c830c59197023515a.zip |
layout: split helper in separate file; more precise difference tracking
Diffstat (limited to 'src/rpc/layout/mod.rs')
-rw-r--r-- | src/rpc/layout/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rpc/layout/mod.rs b/src/rpc/layout/mod.rs index 859287c8..91151ab4 100644 --- a/src/rpc/layout/mod.rs +++ b/src/rpc/layout/mod.rs @@ -1,4 +1,5 @@ mod graph_algo; +mod helper; mod history; mod schema; mod version; @@ -10,7 +11,7 @@ pub mod manager; // ---- re-exports ---- -pub use history::*; +pub use helper::LayoutHelper; pub use manager::WriteLock; pub use schema::*; pub use version::*; |