mangadex_api/v5/captcha/
solve.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pub mod post;

use crate::HttpClientRef;
use post::SolveCaptchaBuilder;

#[derive(Clone, Debug)]
pub struct SolveEndpoint {
    http_client: HttpClientRef,
}

impl SolveEndpoint {
    #[doc(hidden)]
    pub fn new(http_client: HttpClientRef) -> Self {
        Self { http_client }
    }
    pub fn post(&self) -> SolveCaptchaBuilder {
        SolveCaptchaBuilder::default().http_client(self.http_client.clone())
    }
}