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 free;
12pub mod freeze;
13pub mod info;
14pub mod kill;
15pub mod list;
16pub mod on;
17pub mod orphans;
18pub mod ports;
19pub mod stop;
20pub mod stuck;
21pub mod thaw;
22pub mod tree;
23pub mod unstick;
24pub mod wait;
25pub mod watch;
26pub mod why;
27
28pub use by::ByCommand;
29pub use find_in::InCommand;
30pub use for_file::ForCommand;
31pub use free::FreeCommand;
32pub use freeze::FreezeCommand;
33pub use info::InfoCommand;
34pub use kill::KillCommand;
35pub use list::ListCommand;
36pub use on::OnCommand;
37pub use orphans::OrphansCommand;
38pub use ports::PortsCommand;
39pub use stop::StopCommand;
40pub use stuck::StuckCommand;
41pub use thaw::ThawCommand;
42pub use tree::TreeCommand;
43pub use unstick::UnstickCommand;
44pub use wait::WaitCommand;
45pub use watch::WatchCommand;
46pub use why::WhyCommand;