__init__.py 521 B

1234567891011121314151617181920
  1. """
  2. SleekXMPP: The Sleek XMPP Library
  3. Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
  4. This file is part of SleekXMPP.
  5. See the file LICENSE for copying permission.
  6. """
  7. from sleekxmpp.plugins.base import register_plugin
  8. from sleekxmpp.plugins.xep_0009 import stanza
  9. from sleekxmpp.plugins.xep_0009.rpc import XEP_0009
  10. from sleekxmpp.plugins.xep_0009.stanza import RPCQuery, MethodCall, MethodResponse
  11. register_plugin(XEP_0009)
  12. # Retain some backwards compatibility
  13. xep_0009 = XEP_0009