registered the new setup command

This commit is contained in:
2023-02-02 23:12:02 +01:00
parent c175af9407
commit f74638e8fc
2 changed files with 6 additions and 2 deletions

View File

@@ -6,6 +6,7 @@ pub struct Setup;
impl Command for Setup {
fn execute(&self, _args: &HashMap<String, String>) -> Result<(), String> {
println!("setting up");
return Ok(())
}