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 {} + } +}