13 lines
299 B
Rust
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; |