Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0199 / __init__.py
blob5231a5b566b3412fbd72ef1e77934401784902e8
1 """
2 SleekXMPP: The Sleek XMPP Library
3 Copyright (C) 2010 Nathanael C. Fritz
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_0199.stanza import Ping
12 from sleekxmpp.plugins.xep_0199.ping import XEP_0199
15 register_plugin(XEP_0199)
18 # Backwards compatibility for names
19 xep_0199 = XEP_0199
20 xep_0199.sendPing = xep_0199.send_ping