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 lines;
13pub mod message;
14pub mod payload;
15pub mod read;
16pub mod runs;
17pub mod setup;
18pub mod skill;
19pub mod status;
20pub mod upgrade;
21pub mod usage;
22pub mod versions;
23pub mod worktree;
24
25pub(crate) use crate::embedded::walk;