use std::io::Result;
+use crate::configuration::Configuration;
pub struct SyncUp;
vec![]
}
- fn execute(&self, input: Option<&String>) -> Result<()> {
+ fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> {
println!("Sync Up: {:?}!", input);
return Ok(())
}