1 2 3 4 5 6 7 8 9
use clap::Command; use crate::cli::common::CommonArgs; pub fn qoi() -> Command { Command::new("qoi") .about("Encode images into QOI format. (Trendy and Small)") .common_args() }