elif_orm/lib.rs
1//! # elif-orm: Database Layer for elif.rs
2//!
3//! Phase 2 implementation: Production-ready ORM with relationships,
4//! query builder, migrations, and connection management.
5//!
6//! This crate provides the core database layer for elif.rs web framework,
7//! including Model trait, QueryBuilder, error handling, and future support
8//! for relationships, migrations, and connection management.
9
10pub mod model;
11pub mod query;
12pub mod error;
13
14#[cfg(test)]
15mod tests;
16
17// Re-export core traits and types
18pub use model::*;
19pub use query::*;
20pub use error::*;
21
22// Derive macro re-exports (when implemented in future)
23// pub use elif_orm_derive::*;