reorder namespaces

This commit is contained in:
yggverse 2024-11-30 03:17:08 +02:00
parent a0fa799163
commit d0a26f429b

View file

@ -6,8 +6,6 @@ pub mod error;
pub mod response; pub mod response;
pub mod session; pub mod session;
use std::rc::Rc;
pub use connection::Connection; pub use connection::Connection;
pub use error::Error; pub use error::Error;
pub use response::Response; pub use response::Response;
@ -19,6 +17,7 @@ use gio::{
TlsClientConnection, TlsClientConnection,
}; };
use glib::{object::Cast, Bytes, Priority, Uri}; use glib::{object::Cast, Bytes, Priority, Uri};
use std::rc::Rc;
pub const DEFAULT_TIMEOUT: u32 = 10; pub const DEFAULT_TIMEOUT: u32 = 10;