clankers-cli 0.1.1

Command-line interface for clankeRS
1
2
3
4
5
6
7
use anyhow::Result;

pub fn execute(output: &str) -> Result<()> {
    println!("clankeRS record → {output}");
    println!("Hint: enable [logging] record_mcap = true in clankeRS.toml and run clankers run");
    Ok(())
}