Make XmppCodec public

This commit is contained in:
Parker 2024-06-13 12:29:05 -04:00
parent 84de007640
commit 6d449e9aaa

View file

@ -25,7 +25,7 @@ mod stream_start;
#[cfg(feature = "insecure-tcp")]
pub mod tcp;
mod xmpp_codec;
pub use crate::xmpp_codec::Packet;
pub use crate::xmpp_codec::{Packet, XMPPCodec};
mod event;
pub use event::Event;
mod client;