summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0065/__init__.py
diff options
context:
space:
mode:
authorSandro Munda <sandro.munda@guardis.com>2012-06-03 19:56:56 +0200
committerSandro Munda <sandro.munda@guardis.com>2012-06-07 18:38:56 +0200
commita14979375b164aa44071dae30521ec15363f3b7a (patch)
treec5cdec550f287532cec0ae251f9c75cefc9409c6 /sleekxmpp/plugins/xep_0065/__init__.py
parent40ef4a16b1de10333f0e4bf6f884309693681cbb (diff)
downloadslixmpp-a14979375b164aa44071dae30521ec15363f3b7a.tar.gz
slixmpp-a14979375b164aa44071dae30521ec15363f3b7a.tar.bz2
slixmpp-a14979375b164aa44071dae30521ec15363f3b7a.tar.xz
slixmpp-a14979375b164aa44071dae30521ec15363f3b7a.zip
Added a partial support of the XEP 0065 - Socks5 Bytestreams
Diffstat (limited to 'sleekxmpp/plugins/xep_0065/__init__.py')
-rw-r--r--sleekxmpp/plugins/xep_0065/__init__.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0065/__init__.py b/sleekxmpp/plugins/xep_0065/__init__.py
new file mode 100644
index 00000000..8f5dfa6b
--- /dev/null
+++ b/sleekxmpp/plugins/xep_0065/__init__.py
@@ -0,0 +1,8 @@
+"""
+"""
+
+from sleekxmpp.plugins.base import register_plugin
+from sleekxmpp.plugins.xep_0065.proxy import xep_0065
+
+
+register_plugin(xep_0065)