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 ai;
8pub mod analyzer;
9pub mod commands;
10pub mod deploy;
11pub mod doctor;
12pub mod project;
13pub mod templates;