frame_cli/lib.rs
1//! Testable implementation of the `frame` command-line interface: five
2//! intention-verbs — `new`, `run`, `test`, `check`, `doctor` — plus the
3//! quiet `build` alias and the ops-facing `host` subcommand.
4
5pub mod cli;
6pub mod coherence;
7pub mod commands;
8pub mod doctor;
9pub mod error;
10pub mod preflight;
11pub mod project;
12pub mod scaffold;
13
14pub use cli::{Cli, Command, TestScope};
15pub use commands::execute;
16pub use error::CliError;
17pub use scaffold::{NewError, NewOptions, generate};