diff options
author | Lance Stout <lancestout@gmail.com> | 2013-02-19 01:00:04 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-03-29 13:16:18 -0700 |
commit | 3732139fc3f364e6246c637441c9f5fd65c37bfb (patch) | |
tree | c3a91989d9adc45b9749554e5e0eeb5994b49ee3 /sleekxmpp/plugins/xep_0095/__init__.py | |
parent | 0a2737dc77709daa0196340368b7ffbfaf71f641 (diff) | |
download | slixmpp-3732139fc3f364e6246c637441c9f5fd65c37bfb.tar.gz slixmpp-3732139fc3f364e6246c637441c9f5fd65c37bfb.tar.bz2 slixmpp-3732139fc3f364e6246c637441c9f5fd65c37bfb.tar.xz slixmpp-3732139fc3f364e6246c637441c9f5fd65c37bfb.zip |
Save progress on SI file transfer
Diffstat (limited to 'sleekxmpp/plugins/xep_0095/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0095/__init__.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0095/__init__.py b/sleekxmpp/plugins/xep_0095/__init__.py new file mode 100644 index 00000000..4465ef5c --- /dev/null +++ b/sleekxmpp/plugins/xep_0095/__init__.py @@ -0,0 +1,16 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.plugins.base import register_plugin + +from sleekxmpp.plugins.xep_0095 import stanza +from sleekxmpp.plugins.xep_0095.stanza import SI +from sleekxmpp.plugins.xep_0095.stream_initiation import XEP_0095 + + +register_plugin(XEP_0095) |