Files
tools/search/src/lib.rs
T
2026-08-16 15:50:10 -04:00

12 lines
309 B
Rust

mod error;
mod index;
mod schema;
pub mod subtitles;
pub use tantivy;
pub use tantivy::indexer::IndexWriter;
pub use tantivy::schema::Field;
pub use tantivy::schema::document::OwnedValue;
pub use error::{Result, SearchError};
pub use index::{SearchIndex, SearchIndexBuilder, to_json};
pub use schema::Schema;