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_archive.rs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/command/publish_archive.rs (limited to 'src/command/publish_archive.rs') diff --git a/src/command/publish_archive.rs b/src/command/publish_archive.rs new file mode 100644 index 0000000..4275c38 --- /dev/null +++ b/src/command/publish_archive.rs @@ -0,0 +1,32 @@ +use std::io::Result; + +pub struct PublishArchive; + +impl PublishArchive { + pub fn new() -> Self { + PublishArchive + } +} + +impl super::Command for PublishArchive { + fn before_dependencies(&self) -> Vec> { + vec![] + } + + fn execute(&self, input: Option<&String>) -> Result<()> { + println!("Publish Archive: {:?}!", input); + return Ok(()) + } + + fn after_dependencies(&self) -> Vec> { + vec![] + } + + fn command(&self) -> &'static str { + "publish-archive" + } + + fn help(&self) -> &'static str { + "\tPublishes the archive to a remote host." + } +} -- cgit