mod ip_packet_client

This commit is contained in:
mfahampshire
2025-07-09 15:13:52 +02:00
parent a417411184
commit a5c6e9d0e2
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -3,8 +3,8 @@
mod connect;
mod error;
mod helpers;
mod listener;
pub mod helpers;
pub mod listener;
pub use connect::IprClientConnect;
pub use error::Error;
@@ -49,5 +49,4 @@ pub enum Error {
},
}
// Result type based on our error type
pub type Result<T> = std::result::Result<T, Error>;