Move file

This commit is contained in:
Chris Tsang 2022-11-24 00:03:29 +08:00
parent 319f64fe64
commit 19b1da175d
3 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,6 @@ mod base_entity;
mod column;
mod identity;
mod link;
mod loader;
mod model;
/// Re-export common types from the entity
pub mod prelude;
@ -116,6 +115,5 @@ pub use identity::*;
pub use link::*;
pub use model::*;
// pub use prelude::*;
pub use loader::*;
pub use primary_key::*;
pub use relation::*;

View File

@ -5,6 +5,7 @@ mod insert;
mod join;
#[cfg(feature = "with-json")]
mod json;
mod loader;
mod select;
mod traits;
mod update;
@ -17,6 +18,7 @@ pub use insert::*;
pub use join::*;
#[cfg(feature = "with-json")]
pub use json::*;
pub use loader::*;
pub use select::*;
pub use traits::*;
pub use update::*;