zoi-cli 1.25.4

Advanced Package Manager & Environment Orchestrator
Documentation
//! This module contains the implementations for all Zoi CLI commands.

/// The `about` command.
pub mod about;
/// The `audit` command.
pub mod audit;
/// The `autoremove` command.
pub mod autoremove;
/// The `cache` command.
pub mod cache;
/// The `clean` command.
pub mod clean;
/// The `clone` command.
pub mod clone;
/// The `complete` command.
pub mod complete;
/// The `create` command.
pub mod create;
/// The `dev` command.
pub mod dev;
/// The `doctor` command.
pub mod doctor;
/// The `downgrade` command.
pub mod downgrade;
/// The `download` command.
pub mod download;
/// The `env` command.
pub mod env;
/// The `exec` command.
pub mod exec;
/// The `extension` command.
pub mod extension;
/// The `files` command.
pub mod files;
/// The `gen_man` command.
pub mod gen_man;
/// The `helper` command.
pub mod helper;
/// The `history` command.
pub mod history;
/// The `home` command.
pub mod home;
/// The `info` command.
pub mod info;
/// The `install` command.
pub mod install;
/// The `installed_select` command.
pub mod installed_select;
/// The `list` command.
pub mod list;
/// The `man` command.
pub mod man;
/// The `mark` command.
pub mod mark;
/// The `migrate` command.
pub mod migrate;
/// The `owner` command.
pub mod owner;
/// The `package` command.
pub mod package;
/// The `pgp` command.
pub mod pgp;
/// The `pin` command.
pub mod pin;
/// The `provides` command.
pub mod provides;
/// The `registry` command.
pub mod registry;
/// The `repo` command.
pub mod repo;
/// The `rollback` command.
pub mod rollback;
/// The `run` command.
pub mod run;
/// The `search` command.
pub mod search;
/// The `service` command.
pub mod service;
/// The `shell` command.
pub mod shell;
/// The `show` command.
pub mod show;
/// The `sync` command.
pub mod sync;
/// The `system` command.
pub mod system;
/// The `telemetry` command.
pub mod telemetry;
/// The `transaction` command.
pub mod transaction;
/// The `tree` command.
pub mod tree;
/// The `uninstall` command.
pub mod uninstall;
/// The `unpin` command.
pub mod unpin;
/// The `update` command.
pub mod update;
/// The `upgrade` command.
pub mod upgrade;
/// The `use_cmd` command.
pub mod use_cmd;
/// The `utils` command.
pub mod utils;
/// The `ux` command.
pub mod ux;
/// The `version` command.
pub mod version;
/// The `why` command.
pub mod why;