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