1 2 3 4 5 6 7 8
//! Macros module providing helper macros for model definition //! //! This module contains the `define_model!` macro and other utilities //! for easy model definition and database integration. pub use self::model::define_model; pub mod model;