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
//! Database Seeding
//!
//! This module provides database seeding functionality.
//! The legacy seeding is in the factory module.

// Re-export from factory module for now
pub use crate::factory::seeder::*;

// TODO: Implement modular seeding system
// pub mod seeder;
// pub mod strategies;
// pub mod cleanup;