]> git.r.bdr.sh - rbdr/blog/blame - src/command/update.rs
Add logic skeleton for rust version
[rbdr/blog] / src / command / update.rs
CommitLineData
d620665f
RBR
1use std::io::Result;
2
3pub struct Update;
4
5impl Update {
6 pub fn new() -> Self {
7 Update
8 }
9}
10
11impl super::Command for Update {
12 fn before_dependencies(&self) -> Vec<Box<dyn super::Command>> {
13 vec![]
14 }
15
16 fn execute(&self, input: Option<&String>) -> Result<()> {
17 println!("Update: {:?}!", 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 "update"
27 }
28
29 fn help(&self) -> &'static str {
30 "<path_to_post>\t\tUpdates latest blog post"
31 }
32}
33