11 lines
222 B
Rust
11 lines
222 B
Rust
mod error;
|
|
mod index;
|
|
mod schema;
|
|
|
|
pub use tantivy::TantivyDocument as SearchDocument;
|
|
pub use tantivy::doc;
|
|
|
|
pub use error::{Result, SearchError};
|
|
pub use index::{SearchIndex, SearchIndexBuilder};
|
|
pub use schema::Schema;
|