X-Git-Url: https://git.r.bdr.sh/rbdr/blog/blobdiff_plain/d620665f6b2e1ae5db4c98a09e35bd63133ae87f..5f81d796fed4e4efbaf6dbed7d3c69481afddeb3:/src/command/add.rs diff --git a/src/command/add.rs b/src/command/add.rs index 36f25a0..bc1bea0 100644 --- a/src/command/add.rs +++ b/src/command/add.rs @@ -1,4 +1,10 @@ use std::io::Result; +use super::{ + generate::Generate, + sync_down::SyncDown, + sync_up::SyncUp, + update::Update +}; pub struct Add; @@ -10,7 +16,7 @@ impl Add { impl super::Command for Add { fn before_dependencies(&self) -> Vec> { - vec![] + vec![Box::new(SyncDown::new())] } fn execute(&self, input: Option<&String>) -> Result<()> { @@ -19,7 +25,11 @@ impl super::Command for Add { } fn after_dependencies(&self) -> Vec> { - vec![] + vec![ + Box::new(Update::new()), + Box::new(Generate::new()), + Box::new(SyncUp::new()) + ] } fn command(&self) -> &'static str { @@ -27,6 +37,6 @@ impl super::Command for Add { } fn help(&self) -> &'static str { - "\t\tCreates new blog post" + "\t\t\tCreates new blog post" } }