diff options
author | Lance Stout <lancestout@gmail.com> | 2012-09-25 02:34:51 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-09-25 02:34:51 -0700 |
commit | 671f680bb39f366ad13bf937c7b611f667343314 (patch) | |
tree | def84ad76f93177df92823207ba24da765f9f600 /sleekxmpp/plugins/xep_0280/__init__.py | |
parent | dfff19ffbfecae9817437121ed1d8bfb9d847800 (diff) | |
download | slixmpp-671f680bb39f366ad13bf937c7b611f667343314.tar.gz slixmpp-671f680bb39f366ad13bf937c7b611f667343314.tar.bz2 slixmpp-671f680bb39f366ad13bf937c7b611f667343314.tar.xz slixmpp-671f680bb39f366ad13bf937c7b611f667343314.zip |
Add support for XEP-0280 Message Carbons
Diffstat (limited to 'sleekxmpp/plugins/xep_0280/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0280/__init__.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0280/__init__.py b/sleekxmpp/plugins/xep_0280/__init__.py new file mode 100644 index 00000000..8ed65346 --- /dev/null +++ b/sleekxmpp/plugins/xep_0280/__init__.py @@ -0,0 +1,17 @@ +""" + 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 permissio +""" + +from sleekxmpp.plugins.base import register_plugin + +from sleekxmpp.plugins.xep_0280.stanza import ReceivedCarbon, SentCarbon +from sleekxmpp.plugins.xep_0280.stanza import PrivateCarbon +from sleekxmpp.plugins.xep_0280.stanza import CarbonEnable, CarbonDisable +from sleekxmpp.plugins.xep_0280.carbons import XEP_0280 + + +register_plugin(XEP_0280) |