diff options
author | Lance Stout <lancestout@gmail.com> | 2011-07-03 20:37:21 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-07-03 20:37:21 -0700 |
commit | 8d384ce44f62b14504df5ea22e54b92179c6d3c7 (patch) | |
tree | 82f5561453c7a9fc686f079fc98bb9adfc2ccec6 /sleekxmpp/plugins/xep_0224/__init__.py | |
parent | 4d6e7c7dbb069d3718049744313da2dd46b73439 (diff) | |
download | slixmpp-8d384ce44f62b14504df5ea22e54b92179c6d3c7.tar.gz slixmpp-8d384ce44f62b14504df5ea22e54b92179c6d3c7.tar.bz2 slixmpp-8d384ce44f62b14504df5ea22e54b92179c6d3c7.tar.xz slixmpp-8d384ce44f62b14504df5ea22e54b92179c6d3c7.zip |
Added XEP-0224 Attention plugin.
Diffstat (limited to 'sleekxmpp/plugins/xep_0224/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0224/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0224/__init__.py b/sleekxmpp/plugins/xep_0224/__init__.py new file mode 100644 index 00000000..62f5bf82 --- /dev/null +++ b/sleekxmpp/plugins/xep_0224/__init__.py @@ -0,0 +1,11 @@ +""" + 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. +""" + +from sleekxmpp.plugins.xep_0224 import stanza +from sleekxmpp.plugins.xep_0224.stanza import Attention +from sleekxmpp.plugins.xep_0224.attention import xep_0224 |