args-api 0.1.0

Shared API contract types and endpoint definitions for args.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::endpoint::Endpoint;

pub struct VerifyRunner;

impl Endpoint for VerifyRunner {
    const PATH: &'static str = "/ci/runner/{id}/verify";
    const METHOD: http::Method = http::Method::POST;

    type Request = VerifyRunnerRequest;
    type Response = VerifyRunnerResponse;
}

pub type VerifyRunnerRequest = ();
pub type VerifyRunnerResponse = ();