Rename to slixmpp
[slixmpp.git] / slixmpp / plugins / xep_0049 / __init__.py
blob396be75dc586fdf29e77579ac9974c82293c2fb4
1 """
2 Slixmpp: The Slick XMPP Library
3 Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
4 This file is part of Slixmpp.
6 See the file LICENSE for copying permission.
7 """
9 from slixmpp.plugins.base import register_plugin
11 from slixmpp.plugins.xep_0049.stanza import PrivateXML
12 from slixmpp.plugins.xep_0049.private_storage import XEP_0049
15 register_plugin(XEP_0049)