2026-06-08 19:33:49 -04:00
|
|
|
mod error;
|
|
|
|
|
mod index;
|
|
|
|
|
mod schema;
|
|
|
|
|
|
|
|
|
|
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};
|
2026-07-22 20:34:15 -04:00
|
|
|
pub use schema::Schema;
|