import the update_file_store in the index-scheduler

This commit is contained in:
Tamo 2022-09-13 19:28:39 +02:00 committed by Clément Renault
parent 2afb381f95
commit 76597fc382
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
6 changed files with 5 additions and 277 deletions

View file

@ -4,16 +4,15 @@ mod document_formats;
pub mod error;
pub mod index;
pub mod task;
mod update_file_store;
mod utils;
use batch::Batch;
pub use error::Error;
use file_store::UpdateFileStore;
use index::Index;
pub use task::Task;
use task::{Kind, KindWithContent, Status};
use time::OffsetDateTime;
use update_file_store::UpdateFileStore;
use std::collections::hash_map::Entry;
use std::sync::atomic::{AtomicBool, Ordering};