Skip to main content

frame_cli/commands/
mod.rs

1//! The verbs themselves: one module per user intention.
2
3mod boot;
4mod build;
5mod check;
6mod dev;
7mod dispatch;
8mod doctor;
9mod host;
10mod new;
11mod run;
12mod test;
13
14pub use dispatch::execute;