slixmpp/sleekxmpp/plugins/xep_0224/__init__.py

21 lines
493 B
Python
Raw Normal View History

2011-07-04 03:37:21 +00:00
"""
SleekXMPP: The Sleek XMPP Library
Copyright (C) 2011 Nathanael C. Fritz, Lance J.T. Stout
This file is part of SleekXMPP.
See the file LICENSE for copying permission.
"""
2012-03-12 07:32:39 +00:00
from sleekxmpp.plugins.base import register_plugin
2011-07-04 03:37:21 +00:00
from sleekxmpp.plugins.xep_0224 import stanza
from sleekxmpp.plugins.xep_0224.stanza import Attention
2012-03-12 07:32:39 +00:00
from sleekxmpp.plugins.xep_0224.attention import XEP_0224
register_plugin(XEP_0224)
# Retain some backwards compatibility
xep_0224 = XEP_0224