Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0198 / __init__.py
blobdb930347f5fb203d29ea19fce7d48669614927c3
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_0198.stanza import Enable, Enabled
12 from sleekxmpp.plugins.xep_0198.stanza import Resume, Resumed
13 from sleekxmpp.plugins.xep_0198.stanza import Failed
14 from sleekxmpp.plugins.xep_0198.stanza import StreamManagement
15 from sleekxmpp.plugins.xep_0198.stanza import Ack, RequestAck
17 from sleekxmpp.plugins.xep_0198.stream_management import XEP_0198
20 register_plugin(XEP_0198)