diff options
author | Lance Stout <lancestout@gmail.com> | 2011-06-16 14:15:22 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-06-16 14:15:22 -0700 |
commit | 251a47db8cd3262589ffdae5167dd5c4dee065a9 (patch) | |
tree | e9d0e3a1f7c8cd0200dcc62a7b9f660f6cb00a23 /sleekxmpp/roster/__init__.py | |
parent | e4b3a191d6b52c1e11f2a125ae9b71bc7ba6d8d7 (diff) | |
download | slixmpp-251a47db8cd3262589ffdae5167dd5c4dee065a9.tar.gz slixmpp-251a47db8cd3262589ffdae5167dd5c4dee065a9.tar.bz2 slixmpp-251a47db8cd3262589ffdae5167dd5c4dee065a9.tar.xz slixmpp-251a47db8cd3262589ffdae5167dd5c4dee065a9.zip |
Split roster.py into a directory.
Diffstat (limited to 'sleekxmpp/roster/__init__.py')
-rw-r--r-- | sleekxmpp/roster/__init__.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sleekxmpp/roster/__init__.py b/sleekxmpp/roster/__init__.py new file mode 100644 index 00000000..4335d367 --- /dev/null +++ b/sleekxmpp/roster/__init__.py @@ -0,0 +1,12 @@ +""" + SleekXMPP: The Sleek XMPP Library + Copyright (C) 2010 Nathanael C. Fritz + This file is part of SleekXMPP. + + See the file LICENSE for copying permission. +""" + +from sleekxmpp.xmlstream import JID +from sleekxmpp.roster.item import RosterItem +from sleekxmpp.roster.single import RosterNode +from sleekxmpp.roster.multi import Roster |