Initial commit

This commit is contained in:
Alex Wied
2026-06-08 19:33:49 -04:00
commit 6906fb973a
24 changed files with 9382 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
mod error;
mod index;
mod schema;
pub use tantivy::TantivyDocument as SearchDocument;
pub use error::{Result, SearchError};
pub use index::{SearchIndex, SearchIndexBuilder};
pub use schema::Schema;