slixmpp/sleekxmpp/plugins/xep_0009/__init__.py

21 lines
521 B
Python
Raw Normal View History

2011-01-13 07:40:53 +00:00
"""
SleekXMPP: The Sleek XMPP Library
Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
This file is part of SleekXMPP.
See the file LICENSE for copying permission.
"""
2012-03-12 05:27:40 +00:00
from sleekxmpp.plugins.base import register_plugin
2011-01-13 07:40:53 +00:00
from sleekxmpp.plugins.xep_0009 import stanza
2012-03-12 05:27:40 +00:00
from sleekxmpp.plugins.xep_0009.rpc import XEP_0009
2011-01-13 07:40:53 +00:00
from sleekxmpp.plugins.xep_0009.stanza import RPCQuery, MethodCall, MethodResponse
2012-03-12 05:27:40 +00:00
register_plugin(XEP_0009)
# Retain some backwards compatibility
xep_0009 = XEP_0009