From d620665f6b2e1ae5db4c98a09e35bd63133ae87f Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Fri, 23 Feb 2024 20:37:39 +0000 Subject: Add logic skeleton for rust version --- src/command/publish.rs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/command/publish.rs (limited to 'src/command/publish.rs') diff --git a/src/command/publish.rs b/src/command/publish.rs new file mode 100644 index 0000000..d8ca949 --- /dev/null +++ b/src/command/publish.rs @@ -0,0 +1,32 @@ +use std::io::Result; + +pub struct Publish; + +impl Publish { + pub fn new() -> Self { + Publish + } +} + +impl super::Command for Publish { + fn before_dependencies(&self) -> Vec> { + vec![] + } + + fn execute(&self, input: Option<&String>) -> Result<()> { + println!("Publish: {:?}!", input); + return Ok(()) + } + + fn after_dependencies(&self) -> Vec> { + vec![] + } + + fn command(&self) -> &'static str { + "publish" + } + + fn help(&self) -> &'static str { + "\tPublishes the blog to a remote host." + } +} -- cgit