use anyhow::Error;
use crate::cli::http_client::MantaClient;
use crate::cli::output::action_result;
use manta_shared::common::app_context::AppContext;
pub async fn exec(
ctx: &AppContext<'_>,
token: &str,
id: &str,
output_opt: Option<&str>,
) -> Result<(), Error> {
let server_url = ctx.manta_server_url;
MantaClient::new(server_url, ctx.site_name)?
.delete_redfish_endpoint(token, id)
.await?;
action_result::print(
&format!("Redfish endpoint for id '{id}' deleted successfully"),
output_opt,
)?;
Ok(())
}