2023-08-02 00:56:38 +01:00
|
|
|
pub mod bind;
|
|
|
|
|
pub mod iq;
|
2023-10-20 04:51:56 +01:00
|
|
|
pub mod message;
|
|
|
|
|
pub mod presence;
|
2023-07-04 21:27:15 +01:00
|
|
|
pub mod sasl;
|
2023-10-20 04:51:56 +01:00
|
|
|
pub mod starttls;
|
2023-06-19 19:23:54 +01:00
|
|
|
pub mod stream;
|
2023-07-11 21:28:42 +01:00
|
|
|
|
2023-10-20 04:51:56 +01:00
|
|
|
use quick_xml::events::{BytesDecl, Event};
|
2023-08-05 17:38:50 +01:00
|
|
|
|
2023-10-21 01:28:54 +01:00
|
|
|
lazy_static! {
|
|
|
|
|
pub static ref DECLARATION: Event<'static> = Event::Decl(BytesDecl::new("1.0", None, None));
|
|
|
|
|
}
|