use std::io::Result;
+use crate::configuration::Configuration;
pub struct Generate;
vec![]
}
- fn execute(&self, input: Option<&String>) -> Result<()> {
+ fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> {
println!("GENERATE! {:?}", input);
return Ok(())
}
}
fn help(&self) -> &'static str {
- "\t\t\tGenerates the blog assets"
+ "\t\t\t\tGenerates the blog assets"
}
}