Rename to slixmpp
[slixmpp.git] / slixmpp / plugins / xep_0280 / __init__.py
blobed9a19efdc32b067a986047801f59fb02bf9a132
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 permissio
7 """
9 from slixmpp.plugins.base import register_plugin
11 from slixmpp.plugins.xep_0280.stanza import ReceivedCarbon, SentCarbon
12 from slixmpp.plugins.xep_0280.stanza import PrivateCarbon
13 from slixmpp.plugins.xep_0280.stanza import CarbonEnable, CarbonDisable
14 from slixmpp.plugins.xep_0280.carbons import XEP_0280
17 register_plugin(XEP_0280)