refactor(router): make routes public and move crypto module to common utils (#176)

Co-authored-by: Arun Raj M <jarnura47@gmail.com>
This commit is contained in:
ItsMeShashank
2022-12-19 19:34:24 +05:30
committed by GitHub
parent 9a4b1d023e
commit bf322c9535
8 changed files with 55 additions and 26 deletions

View File

@ -1,4 +1,3 @@
pub(crate) mod crypto;
pub(crate) mod custom_serde;
pub(crate) mod db_utils;
mod ext_traits;
@ -8,6 +7,7 @@ mod fp_utils;
pub(crate) mod storage_partitioning;
pub(crate) use common_utils::{
crypto,
ext_traits::{ByteSliceExt, BytesExt, Encode, StringExt, ValueExt},
validation::validate_email,
};