Skip to main content

zoi_cli/cmd/
mod.rs

1//! This module contains the implementations for all Zoi CLI commands.
2
3/// The `about` command.
4pub mod about;
5/// The `audit` command.
6pub mod audit;
7/// The `autoremove` command.
8pub mod autoremove;
9/// The `cache` command.
10pub mod cache;
11/// The `clean` command.
12pub mod clean;
13/// The `clone` command.
14pub mod clone;
15/// The `complete` command.
16pub mod complete;
17/// The `create` command.
18pub mod create;
19/// The `dev` command.
20pub mod dev;
21/// The `doctor` command.
22pub mod doctor;
23/// The `downgrade` command.
24pub mod downgrade;
25/// The `download` command.
26pub mod download;
27/// The `env` command.
28pub mod env;
29/// The `exec` command.
30pub mod exec;
31/// The `extension` command.
32pub mod extension;
33/// The `files` command.
34pub mod files;
35/// The `gen_man` command.
36pub mod gen_man;
37/// The `helper` command.
38pub mod helper;
39/// The `history` command.
40pub mod history;
41/// The `home` command.
42pub mod home;
43/// The `info` command.
44pub mod info;
45/// The `install` command.
46pub mod install;
47/// The `installed_select` command.
48pub mod installed_select;
49/// The `list` command.
50pub mod list;
51/// The `man` command.
52pub mod man;
53/// The `mark` command.
54pub mod mark;
55/// The `migrate` command.
56pub mod migrate;
57/// The `owner` command.
58pub mod owner;
59/// The `package` command.
60pub mod package;
61/// The `pgp` command.
62pub mod pgp;
63/// The `pin` command.
64pub mod pin;
65/// The `provides` command.
66pub mod provides;
67/// The `registry` command.
68pub mod registry;
69/// The `repo` command.
70pub mod repo;
71/// The `rollback` command.
72pub mod rollback;
73/// The `run` command.
74pub mod run;
75/// The `search` command.
76pub mod search;
77/// The `service` command.
78pub mod service;
79/// The `shell` command.
80pub mod shell;
81/// The `show` command.
82pub mod show;
83/// The `sync` command.
84pub mod sync;
85/// The `system` command.
86pub mod system;
87/// The `telemetry` command.
88pub mod telemetry;
89/// The `transaction` command.
90pub mod transaction;
91/// The `tree` command.
92pub mod tree;
93/// The `uninstall` command.
94pub mod uninstall;
95/// The `unpin` command.
96pub mod unpin;
97/// The `update` command.
98pub mod update;
99/// The `upgrade` command.
100pub mod upgrade;
101/// The `use_cmd` command.
102pub mod use_cmd;
103/// The `utils` command.
104pub mod utils;
105/// The `ux` command.
106pub mod ux;
107/// The `version` command.
108pub mod version;
109/// The `why` command.
110pub mod why;