refactor: mod client, move builder to ::client::builder

This commit is contained in:
DarkCat09 2024-08-06 20:32:56 +04:00
parent 96a6ad34a0
commit c6567beed7
Signed by: DarkCat09
GPG key ID: 0A26CD5B3345D6E3
3 changed files with 4 additions and 2 deletions

View file

@ -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;

View file

@ -1,4 +1,3 @@
pub mod builder;
pub mod certs;
pub mod client;
pub mod error;