cargo-tangle 0.5.0-alpha.4

A command-line tool to create and deploy blueprints on Tangle Network
Documentation
1
2
3
4
5
6
7
use crate::command::harness::LogsArgs;
use color_eyre::eyre::Result;

pub async fn run(_args: LogsArgs) -> Result<()> {
    println!("Logs stream to stdout in the `up` process.");
    Ok(())
}