blob: d5d6d2103345228b774dfa8d1b9b537c150fffcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2026 metamuffin <metamuffin.org>
*/
pub mod filter;
pub mod prefix_iterator;
pub mod query;
pub mod sort;
pub mod table;
#[cfg(test)]
pub mod test_shared;
pub type Pad32 = u32;
pub use jellykv as kv;
|