refactor: move response.rs to client mod
This commit is contained in:
parent
e14efd6091
commit
de4903f1e6
3 changed files with 4 additions and 3 deletions
|
@ -1,8 +1,11 @@
|
|||
//! Everything related to Gemini client except cert verification
|
||||
|
||||
pub mod builder;
|
||||
pub mod response;
|
||||
|
||||
use crate::{error::*, response::Response, status::*};
|
||||
pub use response::Response;
|
||||
|
||||
use crate::{error::*, status::*};
|
||||
use builder::ClientBuilder;
|
||||
|
||||
use std::net::ToSocketAddrs;
|
||||
|
|
|
@ -4,10 +4,8 @@
|
|||
pub mod certs;
|
||||
pub mod client;
|
||||
pub mod error;
|
||||
pub mod response;
|
||||
pub mod status;
|
||||
|
||||
pub use client::Client;
|
||||
pub use error::*;
|
||||
pub use response::Response;
|
||||
pub use status::*;
|
||||
|
|
Loading…
Reference in a new issue