elif_orm/models/mod.rs
1//! Model System
2//!
3//! This module provides the core model traits and CRUD operations.
4//! The legacy model.rs file is re-exported for backward compatibility.
5
6// Re-export legacy model for backward compatibility
7pub use crate::model::*;
8
9// TODO: Implement modular model system
10// pub mod core;
11// pub mod crud;
12// pub mod timestamps;
13// pub mod serialization;