X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/53812065cf124b6c1bc40fceec46f8c161033e29..a9c6be4162bd15bd41ba3605127b56cb1eb32f32:/src/command/add_remote.rs diff --git a/src/command/add_remote.rs b/src/command/add_remote.rs index 3d90103..c98330f 100644 --- a/src/command/add_remote.rs +++ b/src/command/add_remote.rs @@ -1,4 +1,5 @@ use std::io::Result; +use crate::configuration::Configuration; pub struct AddRemote; @@ -13,7 +14,7 @@ impl super::Command for AddRemote { vec![] } - fn execute(&self, input: Option<&String>) -> Result<()> { + fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> { println!("Add Remote: {:?}!", input); return Ok(()) }