Skip to main content

release_kit/
commands.rs

1//! One handler per subcommand. Handlers hold the behavior; `main` only
2//! dispatches, and `cli` only declares the argument surface.
3
4pub mod adopt;
5pub mod branches;
6pub mod completions;
7pub mod doctor;
8pub mod forge;
9pub mod guide;
10pub mod init;
11pub mod license;
12pub mod payload;
13pub mod read;
14pub mod runs;
15pub mod setup;
16pub mod skill;
17pub mod status;
18pub mod upgrade;
19pub mod usage;
20pub mod versions;
21
22pub(crate) use crate::embedded::walk;