diff options
author | Lance Stout <lancestout@gmail.com> | 2012-09-26 01:47:05 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-09-26 01:47:05 -0700 |
commit | b5b1c932c7efd2cdf5b4731bde6c8145873da25f (patch) | |
tree | 1d97e8bce8071a200e305d8e0c91e71e709fcd99 /sleekxmpp/plugins/xep_0013/__init__.py | |
parent | b8f04983e1fe3ca45471125f005f41cc290d1bbf (diff) | |
download | slixmpp-b5b1c932c7efd2cdf5b4731bde6c8145873da25f.tar.gz slixmpp-b5b1c932c7efd2cdf5b4731bde6c8145873da25f.tar.bz2 slixmpp-b5b1c932c7efd2cdf5b4731bde6c8145873da25f.tar.xz slixmpp-b5b1c932c7efd2cdf5b4731bde6c8145873da25f.zip |
Add support for XEP-0013: Flexible Offline Message Retrieval
Diffstat (limited to 'sleekxmpp/plugins/xep_0013/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0013/__init__.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0013/__init__.py b/sleekxmpp/plugins/xep_0013/__init__.py new file mode 100644 index 00000000..ad400949 --- /dev/null +++ b/sleekxmpp/plugins/xep_0013/__init__.py @@ -0,0 +1,15 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2012 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_0013.stanza import Offline +from sleekxmpp.plugins.xep_0013.offline import XEP_0013 + + +register_plugin(XEP_0013) |