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 devshell;
8pub mod doctor;
9pub mod forge;
10pub mod guide;
11pub mod init;
12pub mod license;
13pub mod lines;
14pub mod message;
15pub mod payload;
16pub mod read;
17pub mod runs;
18pub mod setup;
19pub mod skill;
20pub mod status;
21pub mod upgrade;
22pub mod usage;
23pub mod versions;
24pub mod worktree;
25
26pub(crate) use crate::embedded::walk;