diff options
author | 2024-12-02 21:50:15 +0000 | |
---|---|---|
committer | 2024-12-02 21:50:15 +0000 | |
commit | be198ca15bbaf633c1535db5bae7091520546aed (patch) | |
tree | e7c33435851c4421bfb950818b285a00e63d93a0 /src/stanza/mod.rs | |
parent | 859a19820d69eca5fca87fc01acad72a6355f97e (diff) | |
download | luz-be198ca15bbaf633c1535db5bae7091520546aed.tar.gz luz-be198ca15bbaf633c1535db5bae7091520546aed.tar.bz2 luz-be198ca15bbaf633c1535db5bae7091520546aed.zip |
implement bind
Diffstat (limited to 'src/stanza/mod.rs')
-rw-r--r-- | src/stanza/mod.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/stanza/mod.rs b/src/stanza/mod.rs index 4f1ce48..84e80ab 100644 --- a/src/stanza/mod.rs +++ b/src/stanza/mod.rs @@ -1,11 +1,12 @@ use peanuts::declaration::VersionInfo; pub mod bind; -pub mod iq; -pub mod message; -pub mod presence; +pub mod client; +pub mod error; pub mod sasl; pub mod starttls; pub mod stream; pub static XML_VERSION: VersionInfo = VersionInfo::One; + +pub use error::Error; |