Fix clippy warning

This commit is contained in:
Chris Tsang 2021-07-18 00:02:40 +08:00
parent 25432e68d0
commit 80976116de
2 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
mod base_entity;
mod column; mod column;
mod entity;
mod generator; mod generator;
mod primary_key; mod primary_key;
mod relation; mod relation;
mod transformer; mod transformer;
mod writer; mod writer;
pub use base_entity::*;
pub use column::*; pub use column::*;
pub use entity::*;
pub use generator::*; pub use generator::*;
pub use primary_key::*; pub use primary_key::*;
pub use relation::*; pub use relation::*;