1 2 3 4 5 6 7 8 9 10 11
//! This crate holds all declarative parts of rorm which do not depend
//! on another crate.
#![warn(missing_docs)]
pub mod config;
pub mod hmr;
/// This module holds the internal model representation
pub mod imr;
pub mod lints;
/// This module holds the definition of migration files
pub mod migration;