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 tools() {
    warn!(
        "This command is deprecated, use {} instead",
        color::shell("proto tool list")
    );

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