fix import

Realized awc is a separate crate so the old import is correct and would cause no confusion when using it stand alone.
This commit is contained in:
fakeshadow 2020-11-05 05:19:55 +08:00 committed by GitHub
parent 331979e846
commit 9400b3c984
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@
## Example ## Example
```rust ```rust
use actix_web::client::Client; use actix_rt::System;
use actix_web::rt::System; use awc::Client;
fn main() { fn main() {
System::new("test").block_on(async { System::new("test").block_on(async {