proto_cli 0.23.2

A multi-language version manager, a unified toolchain.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::commands::tool;
use starbase::system;
use starbase_styles::color;
use tracing::warn;

#[system]
pub async fn remove_plugin_old() {
    warn!(
        "This command is deprecated, use {} instead",
        color::shell("proto tool remove")
    );

    tool::remove(states, resources, emitters).await?;
}