diff --git a/src/client.rs b/src/client.rs index e68435b..a719a67 100644 --- a/src/client.rs +++ b/src/client.rs @@ -66,7 +66,7 @@ impl CoinGeckoClient { } async fn get(&self, endpoint: &str) -> Result { - reqwest::get(format!("{host}/{ep}", host = self.host, ep = endpoint)) + reqwest::get(format!("{host}{ep}", host = self.host, ep = endpoint)) .await? .json() .await