Rename to slixmpp
[slixmpp.git] / slixmpp / plugins / xep_0050 / __init__.py
blob5a2d48054e9c40ace834a18807b0415582950898
1 """
2 Slixmpp: The Slick XMPP Library
3 Copyright (C) 2011 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_0050.stanza import Command
12 from slixmpp.plugins.xep_0050.adhoc import XEP_0050
15 register_plugin(XEP_0050)
18 # Retain some backwards compatibility
19 xep_0050 = XEP_0050