Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0128 / __init__.py
blob27c2cc33b22074d3b36fad34d33440a8dd1cbed0
1 """
2 SleekXMPP: The Sleek XMPP Library
3 Copyright (C) 2010 Nathanael C. Fritz, Lance J.T. Stout
4 This file is part of SleekXMPP.
6 See the file LICENSE for copying permission.
7 """
9 from sleekxmpp.plugins.base import register_plugin
11 from sleekxmpp.plugins.xep_0128.static import StaticExtendedDisco
12 from sleekxmpp.plugins.xep_0128.extended_disco import XEP_0128
15 register_plugin(XEP_0128)
18 # Retain some backwards compatibility
19 xep_0128 = XEP_0128