]> git.r.bdr.sh - rbdr/blog/blobdiff - src/command/remove_remote.rs
Allow sync up and down
[rbdr/blog] / src / command / remove_remote.rs
index 8188beb5c7991391c85cea7a4cf3430ac234938c..7590487d677a6a9f0507c34584d6867c187cd18d 100644 (file)
@@ -1,5 +1,6 @@
 use std::io::Result;
 use crate::configuration::Configuration;
+use crate::remote::remove;
 
 pub struct RemoveRemote;
 
@@ -14,9 +15,8 @@ impl super::Command for RemoveRemote {
         vec![]
     }
 
-    fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> {
-        println!("Remove Remote: {:?}!", input);
-        return Ok(())
+    fn execute(&self, _: Option<&String>, configuration: &Configuration, _: &String) -> Result<()> {
+        remove(&configuration.remote_config)
     }
 
     fn after_dependencies(&self) -> Vec<Box<dyn super::Command>> {