mangadex_api/v5/user/list/
default.rs

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

use crate::HttpClientRef;

use get::MyDefaultCustomListsBuilder;

create_endpoint_node! {
    #[name] DefaultEndpoint DefaultEndpointMethods,
    #[args] {
        http_client: HttpClientRef,
    },
    #[methods] {
        get() -> MyDefaultCustomListsBuilder;
    }
}

impl DefaultEndpointMethods for DefaultEndpoint {
    fn get(&self) -> MyDefaultCustomListsBuilder {
        MyDefaultCustomListsBuilder::default().http_client(self.http_client.clone())
    }
}