mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
format code
This commit is contained in:
parent
1f16c8d224
commit
4041d9dc48
18 changed files with 60 additions and 61 deletions
|
@ -1,7 +1,7 @@
|
|||
mod actor;
|
||||
mod store;
|
||||
mod message;
|
||||
mod handle_impl;
|
||||
mod message;
|
||||
mod store;
|
||||
mod update_store;
|
||||
|
||||
use std::path::PathBuf;
|
||||
|
@ -15,7 +15,7 @@ use crate::index_controller::{UpdateMeta, UpdateStatus};
|
|||
|
||||
use actor::UpdateActor;
|
||||
use message::UpdateMsg;
|
||||
use store::{UpdateStoreStore, MapUpdateStoreStore};
|
||||
use store::{MapUpdateStoreStore, UpdateStoreStore};
|
||||
|
||||
pub use handle_impl::UpdateActorHandleImpl;
|
||||
|
||||
|
@ -51,5 +51,5 @@ pub trait UpdateActorHandle {
|
|||
meta: UpdateMeta,
|
||||
data: mpsc::Receiver<PayloadData<Self::Data>>,
|
||||
uuid: Uuid,
|
||||
) -> Result<UpdateStatus> ;
|
||||
) -> Result<UpdateStatus>;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue