__init__.py 462 B

1234567891011121314151617
  1. """
  2. SleekXMPP: The Sleek XMPP Library
  3. Implementation of HTTP over XMPP transport
  4. http://xmpp.org/extensions/xep-0332.html
  5. Copyright (C) 2015 Riptide IO, sangeeth@riptideio.com
  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_0332 import stanza
  11. from sleekxmpp.plugins.xep_0332.http import XEP_0332
  12. register_plugin(XEP_0332)