1 2 3 4 5 6 7 8 9 10 11 12 13 14
mod dry_run; mod run; mod state; #[cfg(test)] mod tests; #[cfg(test)] mod tests_convergence; mod transition; mod types; pub(crate) use dry_run::dry_run_pending; pub(crate) use run::run_migrations; #[cfg(test)] pub(crate) use types::MIGRATIONS;