wash-cli 0.18.0

wasmcloud Shell (wash) CLI tool
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::Result;
use wash_lib::cli::CommandOutput;

use crate::{
    common::start_cmd::{handle_command as handle_start_command, StartCommand},
    OutputKind,
};

pub(crate) async fn handle_command(
    cli_cmd: StartCommand,
    output_kind: OutputKind,
) -> Result<CommandOutput> {
    .await
}