vectrust_query/lib.rs
1pub mod filter;
2pub mod search;
3pub mod hybrid;
4
5pub use filter::*;
6pub use search::*;
7pub use hybrid::*;
8
9#[cfg(test)]
10mod tests {
11 use super::*;
12
13 #[test]
14 fn test_query_module_exports() {
15 // Test that all modules are properly exported
16 // This is a simple smoke test to ensure compilation works
17 assert!(true);
18 }
19}