diff options
author | Alex Auvolat <alex@adnab.me> | 2023-01-10 10:30:59 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-01-10 10:30:59 +0100 |
commit | a48e2e0cb2bdc75e14dfde199dbca0a779b1316b (patch) | |
tree | 35823fcdeb7a4db3ea5806813b5aaece92eafd14 /src/model/k2v/mod.rs | |
parent | 02e8eb167efa1f08d69fe7f8e6192cde726c45aa (diff) | |
download | garage-a48e2e0cb2bdc75e14dfde199dbca0a779b1316b.tar.gz garage-a48e2e0cb2bdc75e14dfde199dbca0a779b1316b.zip |
K2V: Subscription to ranges of items
Diffstat (limited to 'src/model/k2v/mod.rs')
-rw-r--r-- | src/model/k2v/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/model/k2v/mod.rs b/src/model/k2v/mod.rs index f6a96151..83ad2512 100644 --- a/src/model/k2v/mod.rs +++ b/src/model/k2v/mod.rs @@ -2,5 +2,6 @@ pub mod causality; pub mod item_table; -pub mod poll; pub mod rpc; + +pub(crate) mod sub; |