kittynode-cli 0.36.0

Control center for world computer operators.
1
2
3
4
5
6
use eyre::Result;
use kittynode_core::api::install_package;

pub async fn install_package_cmd(name: String) -> Result<()> {
    install_package(&name).await
}