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