]> git.r.bdr.sh - rbdr/blog/blob - src/command/add.rs
36f25a0716265acc8fa4aff55c99f55bc1a1e712
[rbdr/blog] / src / command / add.rs
1 use std::io::Result;
2
3 pub struct Add;
4
5 impl Add {
6 pub fn new() -> Self {
7 Add
8 }
9 }
10
11 impl super::Command for Add {
12 fn before_dependencies(&self) -> Vec<Box<dyn super::Command>> {
13 vec![]
14 }
15
16 fn execute(&self, input: Option<&String>) -> Result<()> {
17 println!("Add: {:?}!", input);
18 return Ok(())
19 }
20
21 fn after_dependencies(&self) -> Vec<Box<dyn super::Command>> {
22 vec![]
23 }
24
25 fn command(&self) -> &'static str {
26 "add"
27 }
28
29 fn help(&self) -> &'static str {
30 "<path_to_post>\t\tCreates new blog post"
31 }
32 }