use std::io::Result; pub struct Add; impl Add { pub fn new() -> Self { Add } } impl super::Command for Add { fn before_dependencies(&self) -> Vec> { vec![] } fn execute(&self, input: Option<&String>) -> Result<()> { println!("Add: {:?}!", input); return Ok(()) } fn after_dependencies(&self) -> Vec> { vec![] } fn command(&self) -> &'static str { "add" } fn help(&self) -> &'static str { "\t\tCreates new blog post" } }