]>
Commit | Line | Data |
---|---|---|
1 | use std::io::Result; | |
2 | use crate::configuration::Configuration; | |
3 | ||
4 | pub struct Generate; | |
5 | ||
6 | impl Generate { | |
7 | pub fn new() -> Self { | |
8 | Generate | |
9 | } | |
10 | } | |
11 | ||
12 | impl super::Command for Generate { | |
13 | fn before_dependencies(&self) -> Vec<Box<dyn super::Command>> { | |
14 | vec![] | |
15 | } | |
16 | ||
17 | fn execute(&self, input: Option<&String>, _: &Configuration, _: &String) -> Result<()> { | |
18 | println!("GENERATE! {:?}", input); | |
19 | return Ok(()) | |
20 | } | |
21 | ||
22 | fn after_dependencies(&self) -> Vec<Box<dyn super::Command>> { | |
23 | vec![] | |
24 | } | |
25 | ||
26 | fn command(&self) -> &'static str { | |
27 | "generate" | |
28 | } | |
29 | ||
30 | fn help(&self) -> &'static str { | |
31 | "\t\t\t\tGenerates the blog assets" | |
32 | } | |
33 | } |