This commit is contained in:
müde 2026-05-14 22:58:25 +02:00
parent fef2dee92a
commit 1c6d7f7a8f
4 changed files with 15 additions and 8 deletions

View file

@ -81,7 +81,9 @@ async fn main() -> Result<()> {
}
Cmd::List => render(client::request(&cli.socket, HostRequest::List).await?),
Cmd::Pending => render(client::request(&cli.socket, HostRequest::Pending).await?),
Cmd::Approve { id } => render(client::request(&cli.socket, HostRequest::Approve { id }).await?),
Cmd::Approve { id } => {
render(client::request(&cli.socket, HostRequest::Approve { id }).await?)
}
Cmd::Deny { id } => render(client::request(&cli.socket, HostRequest::Deny { id }).await?),
}
}