//! A simple program using `kommand` that copies from an
//! `InputByteStream` into an `OutputByteStream`.
usenameless::{InputByteStream, OutputByteStream};usestd::io::copy;/// # Arguments
////// * `input` - Input source
/// * `output` - Output sink
#[kommand::main]fnmain(mutinput: InputByteStream, mutoutput: OutputByteStream)->anyhow::Result<()>{copy(&mut input,&mut output)?;Ok(())}