created new command for setup

This commit is contained in:
2023-02-02 21:04:56 +01:00
parent c44f2a1eea
commit c175af9407

15
src/app/commands/setup.rs Normal file
View File

@@ -0,0 +1,15 @@
use std::collections::HashMap;
use super::traits::Command;
pub struct Setup;
impl Command for Setup {
fn execute(&self, _args: &HashMap<String, String>) -> Result<(), String> {
return Ok(())
}
fn new() -> Self where Self: Sized {
return Self {}
}
}