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 daemon;
11pub mod doctor;
12pub mod hook;
13pub mod icon;
14pub mod init;
15pub mod install;
16pub mod link;
17pub mod man;
18pub mod restore;
19pub mod run;
20pub mod setup;
21pub mod skill;
22pub mod stats;
23pub mod status;
24pub mod trust;
25pub mod undo;
26pub mod uninstall;
27pub mod update;