12 lines
244 B
Rust
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;
|