2 use crate::configuration::Configuration;
12 impl super::Command for Generate {
13 fn before_dependencies(&self) -> Vec<Box<dyn super::Command>> {
17 fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> {
18 println!("GENERATE! {:?}", input);
22 fn after_dependencies(&self) -> Vec<Box<dyn super::Command>> {
26 fn command(&self) -> &'static str {
30 fn help(&self) -> &'static str {
31 "\t\t\t\tGenerates the blog assets"