pfp 0.1.0

Prefect CLI - a fast Rust CLI for managing Prefect deployments and flow runs
1
2
3
4
5
6
7
8
use crate::client::PrefectClient;
use crate::error::Result;

pub async fn run(client: PrefectClient, flow_run_id: String) -> Result<()> {
    client.cancel_flow_run(&flow_run_id).await?;
    eprintln!("Cancelled flow run: {}", flow_run_id);
    Ok(())
}