Files
tools/search/src/lib.rs
T

13 lines
304 B
Rust
Raw Normal View History

2026-06-08 19:33:49 -04:00
mod error;
mod index;
mod schema;
2026-06-30 19:25:15 -04:00
mod update;
2026-06-08 19:33:49 -04:00
pub use tantivy::TantivyDocument as SearchDocument;
2026-06-09 10:36:13 -04:00
pub use tantivy::doc;
2026-07-01 17:42:23 -04:00
pub use tantivy::schema::document::Value;
2026-06-08 19:33:49 -04:00
pub use error::{Result, SearchError};
pub use index::{SearchIndex, SearchIndexBuilder};
pub use schema::Schema;
2026-06-30 19:25:15 -04:00
pub use update::IndexWriter;