Define error types for transport, auth, channel, and config layers

This commit is contained in:
2026-06-02 09:16:23 +00:00
parent 2bc15f1035
commit 56d032afdb
2 changed files with 159 additions and 1 deletions

View File

@@ -3,4 +3,9 @@ pub mod client;
pub mod server;
pub mod auth;
pub mod socks5;
pub mod error;
pub mod error;
#[cfg(feature = "testutil")]
pub mod testutil;
pub use error::{AuthError, ChannelError, ConfigError, TransportError};