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
//! Factory System
//!
//! This module provides model factories for testing.
//! The legacy factory module is re-exported for backward compatibility.

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

// TODO: Implement modular factory system
// pub mod builder;
// pub mod states;
// pub mod registry;