blob: e4f080ff91e0e9ee665fcf288f44ba31702a4259 (
plain) (
tree)
|
|
pub mod bind;
pub mod iq;
pub mod message;
pub mod presence;
pub mod sasl;
pub mod starttls;
pub mod stream;
use quick_xml::events::{BytesDecl, Event};
lazy_static! {
pub static ref DECLARATION: Event<'static> = Event::Decl(BytesDecl::new("1.0", None, None));
}
|