Move the AvailableDocumentsIds iterator into the update module

This commit is contained in:
Clément Renault 2020-10-26 10:52:57 +01:00
parent b14cca2ad9
commit 60347a5483
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
4 changed files with 4 additions and 3 deletions

View file

@ -23,7 +23,8 @@ use warp::{Filter, http::Response};
use crate::indexing::{self, IndexerOpt, Transform, TransformOutput};
use crate::tokenizer::{simple_tokenizer, TokenType};
use crate::{Index, UpdateStore, SearchResult, AvailableDocumentsIds};
use crate::update::AvailableDocumentsIds;
use crate::{Index, UpdateStore, SearchResult};
#[derive(Debug, StructOpt)]
/// The HTTP main server of the milli project.