diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-28 01:06:21 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-28 01:06:21 -0700 |
commit | 5ae6c8f8faefef3bd0c7d8e4caf0a2071d76382d (patch) | |
tree | d0a8c47567e9884971313f846180f7751d348a60 /sleekxmpp/plugins/xep_0131/__init__.py | |
parent | 54656b331a48b6bac140fcd90b88ab21e3bd67a4 (diff) | |
download | slixmpp-5ae6c8f8faefef3bd0c7d8e4caf0a2071d76382d.tar.gz slixmpp-5ae6c8f8faefef3bd0c7d8e4caf0a2071d76382d.tar.bz2 slixmpp-5ae6c8f8faefef3bd0c7d8e4caf0a2071d76382d.tar.xz slixmpp-5ae6c8f8faefef3bd0c7d8e4caf0a2071d76382d.zip |
Add support for XEP-0131: Standard Headers and Internet Metadata
Diffstat (limited to 'sleekxmpp/plugins/xep_0131/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0131/__init__.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0131/__init__.py b/sleekxmpp/plugins/xep_0131/__init__.py new file mode 100644 index 00000000..ec71c98d --- /dev/null +++ b/sleekxmpp/plugins/xep_0131/__init__.py @@ -0,0 +1,16 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.plugins.base import register_plugin + +from sleekxmpp.plugins.xep_0131 import stanza +from sleekxmpp.plugins.xep_0131.stanza import Headers +from sleekxmpp.plugins.xep_0131.headers import XEP_0131 + + +register_plugin(XEP_0131) |