icydb-cli 0.162.4

Developer CLI tools for IcyDB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod call;
mod commands;
mod process;
mod project;

pub(crate) use call::{hex_response_bytes, icp_query_command, icp_update_command};
pub(crate) use commands::{
    deploy_canister, list_canisters, refresh_canister, status_canister, upgrade_canister,
};
pub(crate) use project::{known_canisters, require_created_canister};

#[cfg(test)]
pub(crate) fn fixtures_load_command(environment: &str, canister: &str) -> std::process::Command {
    commands::fixtures_load_command(environment, canister)
}