Files
tools/search/src/lib.rs
T
2026-06-30 19:25:15 -04:00

13 lines
299 B
Rust

mod error;
mod index;
mod schema;
mod update;
pub use tantivy::TantivyDocument as SearchDocument;
pub use tantivy::doc;
pub use tantivy::schema::OwnedValue;
pub use error::{Result, SearchError};
pub use index::{SearchIndex, SearchIndexBuilder};
pub use schema::Schema;
pub use update::IndexWriter;