mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
create an asc_desc module
This commit is contained in:
parent
113a061bee
commit
257e621d40
5 changed files with 235 additions and 189 deletions
|
@ -4,6 +4,7 @@ extern crate pest_derive;
|
|||
#[macro_use]
|
||||
pub mod documents;
|
||||
|
||||
mod asc_desc;
|
||||
mod criterion;
|
||||
mod error;
|
||||
mod external_documents_ids;
|
||||
|
@ -24,7 +25,8 @@ use fxhash::{FxHasher32, FxHasher64};
|
|||
pub use grenad::CompressionType;
|
||||
use serde_json::{Map, Value};
|
||||
|
||||
pub use self::criterion::{default_criteria, AscDesc, Criterion, Member};
|
||||
pub use self::asc_desc::{AscDesc, Member};
|
||||
pub use self::criterion::{default_criteria, Criterion};
|
||||
pub use self::error::{
|
||||
Error, FieldIdMapMissingEntry, InternalError, SerializationError, UserError,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue