args_api/endpoint/runner/verify_runner.rs
1use crate::endpoint::Endpoint;
2
3pub struct VerifyRunner;
4
5impl Endpoint for VerifyRunner {
6 const PATH: &'static str = "/ci/runner/{id}/verify";
7 const METHOD: http::Method = http::Method::POST;
8
9 type Request = VerifyRunnerRequest;
10 type Response = VerifyRunnerResponse;
11}
12
13pub type VerifyRunnerRequest = ();
14pub type VerifyRunnerResponse = ();