]> git.r.bdr.sh - rbdr/blog/blobdiff - src/command/add_remote.rs
Add part of the implementation for add
[rbdr/blog] / src / command / add_remote.rs
index 3d901038e9fe53eab703595f35353d930acde88c..c98330fbf7d94fdeae7c64abb841b56c1d5f4c13 100644 (file)
@@ -1,4 +1,5 @@
 use std::io::Result;
+use crate::configuration::Configuration;
 
 pub struct AddRemote;
 
@@ -13,7 +14,7 @@ impl super::Command for AddRemote {
         vec![]
     }
 
-    fn execute(&self, input: Option<&String>) -> Result<()> {
+    fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> {
         println!("Add Remote: {:?}!", input);
         return Ok(())
     }