mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-28 01:01:00 +00:00
Move the Object type in the lib.rs file and use it everywhere
This commit is contained in:
@ -1,6 +1,5 @@
|
||||
use std::fs::File;
|
||||
use std::io;
|
||||
use std::result::Result as StdResult;
|
||||
|
||||
use concat_arrays::concat_arrays;
|
||||
use serde_json::Value;
|
||||
|
@ -13,7 +13,7 @@ use serde_json::{Map, Value};
|
||||
use smartstring::SmartString;
|
||||
|
||||
use super::helpers::{create_sorter, create_writer, keep_latest_obkv, merge_obkvs, MergeFn};
|
||||
use super::{validate_document_id, IndexDocumentsMethod, IndexerConfig};
|
||||
use super::{IndexDocumentsMethod, IndexerConfig};
|
||||
use crate::documents::{DocumentsBatchIndex, DocumentsBatchReader};
|
||||
use crate::error::{Error, InternalError, UserError};
|
||||
use crate::index::db_name;
|
||||
|
Reference in New Issue
Block a user