Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0047 / __init__.py
blob5cd7df2e238d5f22634fa67a021a669da4c417a7
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_0047 import stanza
12 from sleekxmpp.plugins.xep_0047.stanza import Open, Close, Data
13 from sleekxmpp.plugins.xep_0047.stream import IBBytestream
14 from sleekxmpp.plugins.xep_0047.ibb import XEP_0047
17 register_plugin(XEP_0047)
20 # Retain some backwards compatibility
21 xep_0047 = XEP_0047