db/heromodels/src/lib.rs
2025-06-03 21:50:08 +03:00

12 lines
244 B
Rust

// Export the models module
pub mod models;
/// Database implementations
pub mod db;
// Re-export the procedural macro
pub use heromodels_derive::model;
// Re-export BaseModelData from heromodels_core
pub use heromodels_core::BaseModelData;