aboutsummaryrefslogtreecommitdiff
path: root/src/command/add.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/add.rs')
-rw-r--r--src/command/add.rs32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/command/add.rs b/src/command/add.rs
new file mode 100644
index 0000000..36f25a0
--- /dev/null
+++ b/src/command/add.rs
@@ -0,0 +1,32 @@
+use std::io::Result;
+
+pub struct Add;
+
+impl Add {
+ pub fn new() -> Self {
+ Add
+ }
+}
+
+impl super::Command for Add {
+ fn before_dependencies(&self) -> Vec<Box<dyn super::Command>> {
+ vec![]
+ }
+
+ fn execute(&self, input: Option<&String>) -> Result<()> {
+ println!("Add: {:?}!", input);
+ return Ok(())
+ }
+
+ fn after_dependencies(&self) -> Vec<Box<dyn super::Command>> {
+ vec![]
+ }
+
+ fn command(&self) -> &'static str {
+ "add"
+ }
+
+ fn help(&self) -> &'static str {
+ "<path_to_post>\t\tCreates new blog post"
+ }
+}