args-cli 0.1.1

Command-line interface for args
Documentation
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
    }
}