mangadex_api/v5/user/list/
default.rs1pub mod get;
2
3use crate::HttpClientRef;
4
5use get::MyDefaultCustomListsBuilder;
6
7create_endpoint_node! {
8 #[name] DefaultEndpoint DefaultEndpointMethods,
9 #[args] {
10 http_client: HttpClientRef,
11 },
12 #[methods] {
13 get() -> MyDefaultCustomListsBuilder;
14 }
15}
16
17impl DefaultEndpointMethods for DefaultEndpoint {
18 fn get(&self) -> MyDefaultCustomListsBuilder {
19 MyDefaultCustomListsBuilder::default().http_client(self.http_client.clone())
20 }
21}