Skip to main content

proc_cli/commands/
mod.rs

1//! CLI command implementations
2//!
3//! Each command is implemented in its own module and follows a consistent pattern:
4//! - Parse arguments from clap
5//! - Execute the operation
6//! - Format and display results
7
8pub mod by;
9pub mod find_in;
10pub mod info;
11pub mod kill;
12pub mod list;
13pub mod on;
14pub mod ports;
15pub mod stop;
16pub mod stuck;
17pub mod tree;
18pub mod unstick;
19
20pub use by::ByCommand;
21pub use find_in::InCommand;
22pub use info::InfoCommand;
23pub use kill::KillCommand;
24pub use list::ListCommand;
25pub use on::OnCommand;
26pub use ports::PortsCommand;
27pub use stop::StopCommand;
28pub use stuck::StuckCommand;
29pub use tree::TreeCommand;
30pub use unstick::UnstickCommand;