1 2 3 4 5 6 7
use anyhow::{Context, Result}; fn main() -> Result<()> { pash::cli::matches_interaction().context("Failed to use CLI matches")?; Ok(()) }