1 2 3 4 5 6 7 8 9
use anyhow::Result; use crate::client::ArgsClient; impl ArgsClient { pub async fn verify_runner(&self) -> Result<()> { self.post("ci/runner/verify".to_string(), ()).await } }