diff options
Diffstat (limited to 'src/command/remove_remote.rs')
| -rw-r--r-- | src/command/remove_remote.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/command/remove_remote.rs b/src/command/remove_remote.rs index cfc5cdb..8188beb 100644 --- a/src/command/remove_remote.rs +++ b/src/command/remove_remote.rs @@ -1,4 +1,5 @@ use std::io::Result; +use crate::configuration::Configuration; pub struct RemoveRemote; @@ -13,7 +14,7 @@ impl super::Command for RemoveRemote { vec![] } - fn execute(&self, input: Option<&String>) -> Result<()> { + fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> { println!("Remove Remote: {:?}!", input); return Ok(()) } |