File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ pub mod errors;
235
235
pub mod indexes;
236
236
/// Module containing the [key::Key] struct.
237
237
pub mod key;
238
- /// Module that preludes HttpClient traits.
238
+ /// Module that prelude HttpClient traits.
239
239
pub mod prelude;
240
240
pub mod request;
241
241
/// Module related to search queries and results.
Original file line number Diff line number Diff line change 1
- pub use client:: * ;
2
-
3
- use crate :: { client, indexes, request} ;
4
-
5
1
#[ cfg( feature = "isahc" ) ]
6
2
#[ cfg( not( target_arch = "wasm32" ) ) ]
7
- pub type Client = client:: Client < request:: IsahcClient > ;
3
+ pub type Client = crate :: client:: Client < crate :: request:: IsahcClient > ;
8
4
#[ cfg( feature = "isahc" ) ]
9
5
#[ cfg( not( target_arch = "wasm32" ) ) ]
10
- pub type Index = indexes:: Index < request:: IsahcClient > ;
6
+ pub type Index = crate :: indexes:: Index < crate :: request:: IsahcClient > ;
11
7
12
8
#[ cfg( target_arch = "wasm32" ) ]
13
- pub type Client = client:: Client < request:: WebSysClient > ;
9
+ pub type Client = crate :: client:: Client < crate :: request:: WebSysClient > ;
14
10
#[ cfg( target_arch = "wasm32" ) ]
15
- pub type Index = indexes:: Index < request:: WebSysClient > ;
11
+ pub type Index = crate :: indexes:: Index < crate :: request:: WebSysClient > ;
You can’t perform that action at this time.
0 commit comments