__init__.py 432 B

12345678910111213141516
  1. """
  2. SleekXMPP: The Sleek XMPP Library
  3. Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
  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_0107 import stanza
  9. from sleekxmpp.plugins.xep_0107.stanza import UserMood
  10. from sleekxmpp.plugins.xep_0107.user_mood import XEP_0107
  11. register_plugin(XEP_0107)