compiled without error, needs fix for warnings and testing

This commit is contained in:
filipriec
2025-03-21 14:05:39 +01:00
parent 15d87e33e5
commit 8dfec29202
3 changed files with 7 additions and 7 deletions

View File

@@ -66,11 +66,11 @@ impl EventHandler {
return Ok((false, message));
},
"force_quit" => {
let (should_exit, message) = command_handler.handle_command("force_quit", terminal).await?;
let (should_exit, message) = command_handler.handle_command("force_quit", terminal, grpc_client).await?;
return Ok((should_exit, message));
},
"save_and_quit" => {
let (should_exit, message) = command_handler.handle_command("save_and_quit", terminal).await?;
let (should_exit, message) = command_handler.handle_command("save_and_quit", terminal, grpc_client).await?;
return Ok((should_exit, message));
},
"revert" => {