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