Move the UpdateStore out of the update module

This commit is contained in:
Clément Renault 2020-11-29 16:26:25 +01:00 committed by Kerollmops
parent 58a1f9081c
commit 96f64c629e
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
3 changed files with 4 additions and 7 deletions

View file

@ -6,7 +6,6 @@ mod index_documents;
mod settings;
mod update_builder;
mod update_step;
mod update_store;
pub use self::available_documents_ids::AvailableDocumentsIds;
pub use self::clear_documents::ClearDocuments;
@ -16,4 +15,3 @@ pub use self::facets::Facets;
pub use self::settings::Settings;
pub use self::update_builder::UpdateBuilder;
pub use self::update_step::UpdateIndexingStep;
pub use self::update_store::UpdateStore;