mod server; mod category; mod channel; mod message; mod user; trait BaseSerializer where M: ActiveModelTrait, { fn into_active_model(self) -> M; fn apply_to_active_model(self, active_model: M) -> M; } use sea_orm::ActiveModelTrait; pub use server::*; pub use category::*; pub use channel::*; pub use message::*; pub use user::*;