Fix(event_handlers/ci_output): Remove because not needed anymore

This commit is contained in:
Benedikt Peetz 2023-07-20 21:50:30 +02:00
parent 20c751fd7f
commit a6d176b6e9
Signed by: bpeetz
GPG Key ID: A5E94010C3A642AD
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
use anyhow::Result;
use cli_log::info;
use crate::app::{events::event_types::EventStatus, App};
pub async fn handle(app: &mut App<'_>, output: &String) -> Result<EventStatus> {
info!("Recieved command output: `{}`", output);
app.ui.set_command_output(output);
Ok(EventStatus::Ok)
}