Skip to content

Commit

Permalink
style: refactor imports
Browse files Browse the repository at this point in the history
  • Loading branch information
null8626 authored May 13, 2023
1 parent da35c70 commit 247f431
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/http.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use crate::{Error, InternalError, Result};
use serde::{de::DeserializeOwned, Deserialize};
use tokio::io::{AsyncReadExt, AsyncWriteExt};
use tokio::net::TcpStream;
use tokio::{io::{AsyncReadExt, AsyncWriteExt}, net::TcpStream};
use tokio_native_tls::{native_tls, TlsConnector};

pub(crate) const GET: &str = "GET";
Expand Down

0 comments on commit 247f431

Please sign in to comment.