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(())
}
}
fn help(&self) -> &'static str {
- "\t\t\t\tPushes to the git remote if configured."
+ "\t\t\t\tPushes to the git remote if configured"
}
}