From c175af94071aa7d877f948ee916ec2a9d28267b1 Mon Sep 17 00:00:00 2001 From: quirinecker Date: Thu, 2 Feb 2023 21:04:56 +0100 Subject: [PATCH] created new command for setup --- src/app/commands/setup.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/app/commands/setup.rs diff --git a/src/app/commands/setup.rs b/src/app/commands/setup.rs new file mode 100644 index 0000000..41e500e --- /dev/null +++ b/src/app/commands/setup.rs @@ -0,0 +1,15 @@ +use std::collections::HashMap; + +use super::traits::Command; + +pub struct Setup; + +impl Command for Setup { + fn execute(&self, _args: &HashMap) -> Result<(), String> { + return Ok(()) + } + + fn new() -> Self where Self: Sized { + return Self {} + } +}