blob: c5a6da35feab4694191c49ff9322addd5b81d270 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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};
pub static DECLARATION: Event = Event::Decl(BytesDecl::new("1.0", None, None));
|