diff options
author | Lance Stout <lancestout@gmail.com> | 2011-06-30 15:40:22 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-06-30 15:40:22 -0700 |
commit | 754ac5092a3a37819a71f6565a1e54b3f2547940 (patch) | |
tree | 8eac47a45f53e7f5bca0ffe312409dbb71924e42 /sleekxmpp/features/__init__.py | |
parent | 9ed972ffeba8f5071d5cae8497322764207fec04 (diff) | |
download | slixmpp-754ac5092a3a37819a71f6565a1e54b3f2547940.tar.gz slixmpp-754ac5092a3a37819a71f6565a1e54b3f2547940.tar.bz2 slixmpp-754ac5092a3a37819a71f6565a1e54b3f2547940.tar.xz slixmpp-754ac5092a3a37819a71f6565a1e54b3f2547940.zip |
Reorganize features into plugins.
Diffstat (limited to 'sleekxmpp/features/__init__.py')
-rw-r--r-- | sleekxmpp/features/__init__.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sleekxmpp/features/__init__.py b/sleekxmpp/features/__init__.py new file mode 100644 index 00000000..940a37f1 --- /dev/null +++ b/sleekxmpp/features/__init__.py @@ -0,0 +1,10 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +__all__ = ['feature_starttls', 'feature_mechanisms', + 'sasl_plain', 'sasl_anonymous'] |