use std::error::Error; pub fn main(args: Vec) -> Result<(), Box> { if !args.is_empty() { Err("No arguments expected to 'animalia' command")?; } Ok(()) }