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