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-06-30 19:25:15 -04:00
|
|
|
pub use tantivy::schema::OwnedValue;
|
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;
|