use std::io::Result; pub struct SyncDown; impl SyncDown { pub fn new() -> Self { SyncDown } } impl super::Command for SyncDown { fn before_dependencies(&self) -> Vec> { vec![] } fn execute(&self, input: Option<&String>) -> Result<()> { println!("Sync Down: {:?}!", input); return Ok(()) } fn after_dependencies(&self) -> Vec> { vec![] } fn command(&self) -> &'static str { "sync-down" } fn help(&self) -> &'static str { "\t\t\t\tPulls from the git remote if configured" } }