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 link;
16pub mod man;
17pub mod restore;
18pub mod run;
19pub mod setup;
20pub mod skill;
21pub mod stats;
22pub mod status;
23pub mod trust;
24pub mod undo;
25pub mod uninstall;
26pub mod update;