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 for_file;
11pub mod info;
12pub mod kill;
13pub mod list;
14pub mod on;
15pub mod ports;
16pub mod stop;
17pub mod stuck;
18pub mod tree;
19pub mod unstick;
20
21pub use by::ByCommand;
22pub use find_in::InCommand;
23pub use for_file::ForCommand;
24pub use info::InfoCommand;
25pub use kill::KillCommand;
26pub use list::ListCommand;
27pub use on::OnCommand;
28pub use ports::PortsCommand;
29pub use stop::StopCommand;
30pub use stuck::StuckCommand;
31pub use tree::TreeCommand;
32pub use unstick::UnstickCommand;