mod.rs 153 B

123456789
  1. pub use auth::*;
  2. pub use user_profile::*;
  3. pub mod auth;
  4. mod user_profile;
  5. pub mod prelude {
  6. pub use crate::entities::{auth::*, user_profile::*};
  7. }