diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-24 04:31:48 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-24 04:31:48 +0100 |
| commit | b2e88a8beabf04adc28947cf82996e8692a68b71 (patch) | |
| tree | 23d66c8672b69cce7835ffabae4092669062ada8 /database/src/lib.rs | |
| parent | 774f64c0789529884dd7a5232f190e347ad29532 (diff) | |
| download | jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar.bz2 jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar.zst | |
move things around; kv crate
Diffstat (limited to 'database/src/lib.rs')
| -rw-r--r-- | database/src/lib.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/database/src/lib.rs b/database/src/lib.rs index cd9777d..d5d6d21 100644 --- a/database/src/lib.rs +++ b/database/src/lib.rs @@ -3,13 +3,14 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2026 metamuffin <metamuffin.org> */ -pub mod backends; -pub mod sort; +pub mod filter; pub mod prefix_iterator; -pub mod table; pub mod query; -pub mod filter; +pub mod sort; +pub mod table; #[cfg(test)] pub mod test_shared; pub type Pad32 = u32; + +pub use jellykv as kv; |