]> git.r.bdr.sh - rbdr/blog/blobdiff - src/command/remove_remote.rs
Add part of the implementation for add
[rbdr/blog] / src / command / remove_remote.rs
index cfc5cdb848b7b154389196fa31fa379844facd9d..8188beb5c7991391c85cea7a4cf3430ac234938c 100644 (file)
@@ -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(())
     }