Skip to content

Commit d3cd3cc

Browse files
committed
Fix duplicate imports in client.rs
1 parent 5381756 commit d3cd3cc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

async-openai/src/client.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use std::pin::Pin;
2+
use std::sync::Arc;
23

34
use bytes::Bytes;
45
use futures::{stream::StreamExt, Stream};
@@ -567,9 +568,6 @@ where
567568
}
568569

569570

570-
use crate::http_client::{BoxedHttpClient, HttpClient};
571-
use std::sync::Arc;
572-
573571
/// Client with HttpClient trait support
574572
pub struct ClientWithTrait<C: Config> {
575573
http_client: BoxedHttpClient,

0 commit comments

Comments
 (0)