__init__.py 534 B

123456789101112131415161718
  1. """
  2. SleekXMPP: The Sleek 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 SleekXMPP.
  7. See the file LICENSE for copying permission.
  8. """
  9. from sleekxmpp.plugins.base import register_plugin
  10. from sleekxmpp.plugins.xep_0325.control import XEP_0325
  11. from sleekxmpp.plugins.xep_0325 import stanza
  12. register_plugin(XEP_0325)
  13. xep_0325=XEP_0325