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 column;
mod identity; mod identity;
mod link; mod link;
mod loader;
mod model; mod model;
/// Re-export common types from the entity /// Re-export common types from the entity
pub mod prelude; pub mod prelude;
@ -116,6 +115,5 @@ pub use identity::*;
pub use link::*; pub use link::*;
pub use model::*; pub use model::*;
// pub use prelude::*; // pub use prelude::*;
pub use loader::*;
pub use primary_key::*; pub use primary_key::*;
pub use relation::*; pub use relation::*;

View File

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