fix: fix qbit torrent test

This commit is contained in:
2025-01-01 07:10:18 +08:00
parent 393f704e52
commit 70932900cd
21 changed files with 625 additions and 210 deletions

View File

@@ -31,6 +31,12 @@ pub struct HttpClient {
pub config: HttpClientConfig,
}
impl Into<ClientWithMiddleware> for HttpClient {
fn into(self) -> ClientWithMiddleware {
self.client
}
}
impl Deref for HttpClient {
type Target = ClientWithMiddleware;