Add pubsub#owner initial support (only configure)
This commit is contained in:
parent
521bf6e7d7
commit
e6d4047160
2 changed files with 143 additions and 0 deletions
|
|
@ -7,10 +7,14 @@
|
|||
/// The `http://jabber.org/protocol/pubsub#event` protocol.
|
||||
pub mod event;
|
||||
|
||||
/// The `http://jabber.org/protocol/pubsub#owner` protocol.
|
||||
pub mod owner;
|
||||
|
||||
/// The `http://jabber.org/protocol/pubsub` protocol.
|
||||
pub mod pubsub;
|
||||
|
||||
pub use self::event::PubSubEvent;
|
||||
pub use self::owner::PubSubOwner;
|
||||
pub use self::pubsub::PubSub;
|
||||
|
||||
use crate::{Element, Jid};
|
||||
|
|
|
|||
Loading…
Reference in a new issue