Add pubsub#owner initial support (only configure)

This commit is contained in:
Paul Fariello 2020-09-27 11:33:11 +02:00
commit e6d4047160
2 changed files with 143 additions and 0 deletions

View file

@ -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};