Rename to slixmpp
[slixmpp.git] / slixmpp / plugins / xep_0325 / __init__.py
blobce8cb7ced84e40db81918434e576106ccd698261
1 """
2 Slixmpp: The Slick XMPP Library
3 Implementation of xeps for Internet of Things
4 http://wiki.xmpp.org/web/Tech_pages/IoT_systems
5 Copyright (C) 2013 Sustainable Innovation, Joachim.lindborg@sust.se, bjorn.westrom@consoden.se
6 This file is part of Slixmpp.
8 See the file LICENSE for copying permission.
9 """
11 from slixmpp.plugins.base import register_plugin
13 from slixmpp.plugins.xep_0325.control import XEP_0325
14 from slixmpp.plugins.xep_0325 import stanza
16 register_plugin(XEP_0325)
18 xep_0325=XEP_0325