Skip to content
This repository has been archived by the owner on Sep 15, 2023. It is now read-only.

feat: Expose client an endpoint #77

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/api_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ async fn api_error_or_value<T: serde::de::DeserializeOwned>(
#[allow(clippy::type_complexity)]
#[derive(Clone)]
pub struct Client<A, B, C, D, E, F, G, H, I, J> {
http: reqwest::Client,
endpoint: Url,
pub http: reqwest::Client,
pub endpoint: Url,
_phantom: std::marker::PhantomData<(A, B, C, D, E, F, G, H, I, J)>,
}

Expand Down