elif-orm 0.7.1

Production-ready ORM with migrations, database services, connection pooling, and query builder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Model System
//!
//! This module provides the core model traits and CRUD operations.
//! The legacy model.rs file is re-exported for backward compatibility.

// Re-export legacy model for backward compatibility
pub use crate::model::*;

// TODO: Implement modular model system
// pub mod core;
// pub mod crud;
// pub mod timestamps;
// pub mod serialization;