feat: Introduce index events to update the WordIndex

This commit is contained in:
Clément Renault
2019-04-15 16:07:41 +02:00
parent 25a4961453
commit 0104e93ba9
3 changed files with 47 additions and 1 deletions

View File

@ -1,4 +1,5 @@
mod database;
mod index_event;
mod indexer;
mod number;
mod ranked_map;
@ -8,4 +9,3 @@ pub use self::database::{Database, Index};
pub use self::number::Number;
pub use self::ranked_map::RankedMap;
pub use self::schema::{Schema, SchemaAttr};
pub use self::indexer::Indexer;