summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0359/__init__.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-12-02 19:47:46 +0100
committermathieui <mathieui@mathieui.net>2020-12-04 19:14:30 +0100
commitc63e9a32b9481ccd52f5ccf3dcdd3a61f0109f21 (patch)
treefc6fe876ef5ba588b901a5997350010877525301 /slixmpp/plugins/xep_0359/__init__.py
parent58c3579f74e2827c0be973cac9b0a0ae9a606a1e (diff)
downloadslixmpp-c63e9a32b9481ccd52f5ccf3dcdd3a61f0109f21.tar.gz
slixmpp-c63e9a32b9481ccd52f5ccf3dcdd3a61f0109f21.tar.bz2
slixmpp-c63e9a32b9481ccd52f5ccf3dcdd3a61f0109f21.tar.xz
slixmpp-c63e9a32b9481ccd52f5ccf3dcdd3a61f0109f21.zip
XEP-0359: Unique and Stable Stanza IDs
(was partially supported in places before)
Diffstat (limited to 'slixmpp/plugins/xep_0359/__init__.py')
-rw-r--r--slixmpp/plugins/xep_0359/__init__.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/slixmpp/plugins/xep_0359/__init__.py b/slixmpp/plugins/xep_0359/__init__.py
new file mode 100644
index 00000000..dd01ea1e
--- /dev/null
+++ b/slixmpp/plugins/xep_0359/__init__.py
@@ -0,0 +1,13 @@
+"""
+ Slixmpp: The Slick XMPP Library
+ Copyright (C) 2020 Mathieu Pasquet <mathieui@mathieui.net>
+ This file is part of Slixmpp.
+
+ See the file LICENSE for copying permission.
+"""
+
+from slixmpp.plugins.base import register_plugin
+from slixmpp.plugins.xep_0359.stanza import *
+from slixmpp.plugins.xep_0359.stanzaid import XEP_0359
+
+register_plugin(XEP_0359)