Skip to main content

frame_cli/
lib.rs

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