Skip to main content

frame_cli/commands/
mod.rs

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