diff --git a/src/client.rs b/src/client.rs index 412e8b00..6071a7fe 100644 --- a/src/client.rs +++ b/src/client.rs @@ -3,7 +3,7 @@ use reqwest::blocking::{Client, ClientBuilder}; use std::time::Duration; /// Url shortener: the way to retrieve a short url. -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct UrlShortener { client: Client, }