]> git.r.bdr.sh - rbdr/blog/blobdiff - src/command/remove_remote.rs
Deal with all lints
[rbdr/blog] / src / command / remove_remote.rs
index cfc5cdb848b7b154389196fa31fa379844facd9d..ee1dfde6a0f06610a366c95a37482d8822f7274a 100644 (file)
@@ -1,3 +1,5 @@
+use crate::configuration::Configuration;
+use crate::remote::remove;
 use std::io::Result;
 
 pub struct RemoveRemote;
@@ -13,9 +15,8 @@ impl super::Command for RemoveRemote {
         vec![]
     }
 
-    fn execute(&self, input: Option<&String>) -> Result<()> {
-        println!("Remove Remote: {:?}!", input);
-        return Ok(())
+    fn execute(&self, _: Option<&String>, configuration: &Configuration, _: &str) -> Result<()> {
+        remove(&configuration.remote_config)
     }
 
     fn after_dependencies(&self) -> Vec<Box<dyn super::Command>> {