Skip to content

Commit d9b9266

Browse files
committed
fix: derive Debug for client
1 parent 67044d7 commit d9b9266

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static DEFAULT_BASE: &str = "https://uapis.cn/api/v1";
1313
static DEFAULT_UA: &str = "uapi-sdk-rust/0.1.1";
1414
static DEFAULT_BASE_URL: Lazy<Url> = Lazy::new(|| Url::parse(DEFAULT_BASE).expect("valid default base"));
1515

16-
#[derive(Clone)]
16+
#[derive(Clone, Debug)]
1717
pub struct Client {
1818
pub(crate) http: reqwest::Client,
1919
pub(crate) base_url: Url,

0 commit comments

Comments
 (0)