summaryrefslogtreecommitdiffstats
path: root/src/stanza/mod.rs
blob: e4f080ff91e0e9ee665fcf288f44ba31702a4259 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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));
}