Skip to main content

ferro_cli/
lib.rs

1//! ferro-cli library surface.
2//!
3//! The CLI binary lives in `src/main.rs`. This library exists so integration
4//! tests (and potentially other tooling) can call into the deploy-scaffold
5//! helpers without going through the CLI shell.
6
7pub mod analyzer;
8pub mod commands;
9pub mod deploy;
10pub mod doctor;
11pub(crate) mod naming;
12pub mod project;
13pub mod templates;