create an asc_desc module

This commit is contained in:
Tamo 2021-09-22 15:18:39 +02:00
parent 113a061bee
commit 257e621d40
No known key found for this signature in database
GPG key ID: 20CD8020AFA88D69
5 changed files with 235 additions and 189 deletions

View file

@ -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,
};