refactor(router): move db models into separate crate and refactoring around it (#125)

This commit is contained in:
ItsMeShashank
2022-12-13 12:00:27 +05:30
committed by GitHub
parent fc670ea0da
commit eb4fe6f46b
106 changed files with 4013 additions and 3387 deletions

View File

@ -31,8 +31,6 @@ pub(crate) mod macros;
pub mod routes;
pub mod scheduler;
#[allow(unused_imports)] // Allow unused imports only for schema module
pub mod schema;
pub mod services;
pub mod types;
pub mod utils;
@ -64,7 +62,7 @@ pub mod headers {
pub mod pii {
//! Personal Identifiable Information protection.
pub(crate) use common_utils::pii::{CardNumber, Email, IpAddress};
pub(crate) use common_utils::pii::{CardNumber, Email};
#[doc(inline)]
pub use masking::*;
}