rorm_cli/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3/// Reexport the config
4pub use rorm_declaration::config;
5
6/// Reexports for executing the defined cli parser via another
7pub mod entry;
8/// This module is used for creating a configuration file that can be used by the
9/// binary version.
10pub mod init;
11/// This module handles the creation of migration files
12pub mod make_migrations;
13/// This module is used for applying migrations
14pub mod migrate;
15
16mod linter;
17mod squash_migrations;
18mod utils;