Rename to slixmpp
[slixmpp.git] / slixmpp / plugins / xep_0107 / __init__.py
blob778fd33b14c37f8bce256e3785ce3c47d5fc0df5
1 """
2 Slixmpp: The Slick XMPP Library
3 Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
4 This file is part of Slixmpp.
6 See the file LICENSE for copying permission.
7 """
9 from slixmpp.plugins.base import register_plugin
11 from slixmpp.plugins.xep_0107 import stanza
12 from slixmpp.plugins.xep_0107.stanza import UserMood
13 from slixmpp.plugins.xep_0107.user_mood import XEP_0107
16 register_plugin(XEP_0107)