dev_prune/commands/mod.rs
1// Copyright 2026 VKrishna04
2// SPDX-License-Identifier: Apache-2.0
3
4/// Command handler modules.
5///
6/// Each subcommand has its own module with a `run()` function.
7pub mod caches;
8pub mod completions;
9pub mod config;
10pub mod containers;
11pub mod daemon;
12pub mod doctor;
13pub mod hook;
14pub mod icon;
15pub mod init;
16pub mod install;
17pub mod link;
18pub mod man;
19pub mod restore;
20pub mod run;
21pub mod setup;
22pub mod skill;
23pub mod stats;
24pub mod status;
25pub mod trust;
26pub mod undo;
27pub mod uninstall;
28pub mod update;