diff options
author | Sangeeth Saravanaraj <sangeeth@riptideio.com> | 2015-01-22 16:40:03 +0530 |
---|---|---|
committer | Sangeeth Saravanaraj <sangeeth@riptideio.com> | 2015-01-22 16:40:03 +0530 |
commit | ecd124dd068ea381555fca3c42c402c46da0cba1 (patch) | |
tree | 917404e34e1b7bc1ef23936a990d5550420b40a1 /sleekxmpp/plugins/xep_0332/__init__.py | |
parent | 4a8951c4eeb34506d5d057a00e221500a1835c85 (diff) | |
download | slixmpp-ecd124dd068ea381555fca3c42c402c46da0cba1.tar.gz slixmpp-ecd124dd068ea381555fca3c42c402c46da0cba1.tar.bz2 slixmpp-ecd124dd068ea381555fca3c42c402c46da0cba1.tar.xz slixmpp-ecd124dd068ea381555fca3c42c402c46da0cba1.zip |
Boilerplate for xep_0332
Diffstat (limited to 'sleekxmpp/plugins/xep_0332/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0332/__init__.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0332/__init__.py b/sleekxmpp/plugins/xep_0332/__init__.py new file mode 100644 index 00000000..3f80ce82 --- /dev/null +++ b/sleekxmpp/plugins/xep_0332/__init__.py @@ -0,0 +1,15 @@ +""" + SleekXMPP: The Sleek XMPP Library + Implementation of HTTP over XMPP transport + http://xmpp.org/extensions/xep-0332.html + Copyright (C) 2015 Riptide IO, sangeeth@riptideio.com + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.plugins.base import register_plugin + +from sleekxmpp.plugins.xep_0332.http import XEP_0332 + +register_plugin(XEP_0332) |