diff options
author | 2024-12-03 03:51:26 +0000 | |
---|---|---|
committer | 2024-12-03 03:51:26 +0000 | |
commit | 7c2577d196c059ab6e2d5b0efe5e036bdad75be7 (patch) | |
tree | 7649b705f0af85a8b521d8fa849f9ed77e2c201c /src/stanza/mod.rs | |
parent | be198ca15bbaf633c1535db5bae7091520546aed (diff) | |
download | luz-7c2577d196c059ab6e2d5b0efe5e036bdad75be7.tar.gz luz-7c2577d196c059ab6e2d5b0efe5e036bdad75be7.tar.bz2 luz-7c2577d196c059ab6e2d5b0efe5e036bdad75be7.zip |
implement remaining rfc6120 xml schemas
Diffstat (limited to '')
-rw-r--r-- | src/stanza/mod.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/stanza/mod.rs b/src/stanza/mod.rs index 84e80ab..32716d3 100644 --- a/src/stanza/mod.rs +++ b/src/stanza/mod.rs @@ -2,11 +2,10 @@ use peanuts::declaration::VersionInfo; pub mod bind; pub mod client; -pub mod error; pub mod sasl; +pub mod stanza_error; pub mod starttls; pub mod stream; +pub mod stream_error; pub static XML_VERSION: VersionInfo = VersionInfo::One; - -pub use error::Error; |