Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0020 / __init__.py
blobc6aafe97b91b4903ddd5049f2fbf1a3ed5aa0968
1 """
2 SleekXMPP: The Sleek XMPP Library
3 Copyright (C) 2013 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_0020 import stanza
12 from sleekxmpp.plugins.xep_0020.stanza import FeatureNegotiation
13 from sleekxmpp.plugins.xep_0020.feature_negotiation import XEP_0020
16 register_plugin(XEP_0020)