refactor: mod client, move builder to ::client::builder
This commit is contained in:
parent
96a6ad34a0
commit
c6567beed7
3 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
|||
use crate::{builder::ClientBuilder, error::*, response::Response, status::*};
|
||||
pub mod builder;
|
||||
|
||||
use crate::{error::*, response::Response, status::*};
|
||||
use builder::ClientBuilder;
|
||||
|
||||
use std::net::ToSocketAddrs;
|
||||
use std::sync::Arc;
|
|
@ -1,4 +1,3 @@
|
|||
pub mod builder;
|
||||
pub mod certs;
|
||||
pub mod client;
|
||||
pub mod error;
|
||||
|
|
Loading…
Reference in a new issue