Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0077 / __init__.py
blob779ae0ace5ce2fadd791c3c98ea7fcb2be013b30
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.
6 See the file LICENSE for copying permission.
7 """
9 from sleekxmpp.plugins.base import register_plugin
11 from sleekxmpp.plugins.xep_0077.stanza import Register, RegisterFeature
12 from sleekxmpp.plugins.xep_0077.register import XEP_0077
15 register_plugin(XEP_0077)
18 # Retain some backwards compatibility
19 xep_0077 = XEP_0077