From 5ae6c8f8faefef3bd0c7d8e4caf0a2071d76382d Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Sat, 28 Jul 2012 01:06:21 -0700 Subject: Add support for XEP-0131: Standard Headers and Internet Metadata --- sleekxmpp/plugins/xep_0131/__init__.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 sleekxmpp/plugins/xep_0131/__init__.py (limited to 'sleekxmpp/plugins/xep_0131/__init__.py') 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) -- cgit v1.2.3