From 7c2577d196c059ab6e2d5b0efe5e036bdad75be7 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Tue, 3 Dec 2024 03:51:26 +0000 Subject: implement remaining rfc6120 xml schemas --- src/stanza/mod.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/stanza/mod.rs') 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; -- cgit