Rename to slixmpp
[slixmpp.git] / slixmpp / plugins / xep_0319 / __init__.py
bloba9253b499d28dbcf915a9ed3817b0de95e9970d0
1 """
2 Slixmpp: The Slick XMPP Library
3 Copyright (C) 2013 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_0319 import stanza
12 from slixmpp.plugins.xep_0319.stanza import Idle
13 from slixmpp.plugins.xep_0319.idle import XEP_0319
16 register_plugin(XEP_0319)