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;
20pub mod watch;
21
22pub use by::ByCommand;
23pub use find_in::InCommand;
24pub use for_file::ForCommand;
25pub use info::InfoCommand;
26pub use kill::KillCommand;
27pub use list::ListCommand;
28pub use on::OnCommand;
29pub use ports::PortsCommand;
30pub use stop::StopCommand;
31pub use stuck::StuckCommand;
32pub use tree::TreeCommand;
33pub use unstick::UnstickCommand;
34pub use watch::WatchCommand;