luz/src/stanza/mod.rs

14 lines
268 B
Rust
Raw Normal View History

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