]> git.r.bdr.sh - rbdr/blog/blobdiff - src/command/add_remote.rs
Allow sync up and down
[rbdr/blog] / src / command / add_remote.rs
index 3d901038e9fe53eab703595f35353d930acde88c..040e5729b25201ce0160433f1170635a8097b987 100644 (file)
@@ -1,4 +1,6 @@
 use std::io::Result;
+use crate::configuration::Configuration;
+use crate::remote::add;
 
 pub struct AddRemote;
 
@@ -13,9 +15,9 @@ impl super::Command for AddRemote {
         vec![]
     }
 
-    fn execute(&self, input: Option<&String>) -> Result<()> {
-        println!("Add Remote: {:?}!", input);
-        return Ok(())
+    fn execute(&self, input: Option<&String>, configuration: &Configuration, _: &String) -> Result<()> {
+        let input = input.expect("You must provide a location for the remote.");
+        add(&configuration.config_directory, &configuration.remote_config, input)
     }
 
     fn after_dependencies(&self) -> Vec<Box<dyn super::Command>> {