mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 12:27:13 +02:00
fix compile errors
This commit is contained in:
parent
334933b874
commit
686f987180
6 changed files with 59 additions and 61 deletions
|
@ -3,11 +3,9 @@ mod updates;
|
|||
|
||||
pub use search::{SearchQuery, SearchResult};
|
||||
|
||||
use std::fs::create_dir_all;
|
||||
use std::ops::Deref;
|
||||
use std::sync::Arc;
|
||||
|
||||
use milli::Index;
|
||||
use sha2::Digest;
|
||||
|
||||
use crate::{option::Opt, updates::Settings};
|
||||
|
@ -29,8 +27,7 @@ impl Deref for Data {
|
|||
|
||||
#[derive(Clone)]
|
||||
pub struct DataInner {
|
||||
pub indexes: Arc<IndexController>,
|
||||
pub update_queue: Arc<UpdateQueue>,
|
||||
pub indexes: Arc<IndexController<UpdateQueue>>,
|
||||
api_keys: ApiKeys,
|
||||
options: Opt,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue