use super::*; pub fn cmds() -> impl Iterator { [ command!("import", Optional(("url", OpaqueStringRemainder)) => "import") .flag(("yes", ["y"])), command!("export" => "export"), ] .into_iter() }