Bump to 1.3.1
[slixmpp.git] / sleekxmpp / plugins / xep_0280 / __init__.py
blob929321afd1d327346afaae503111cf93b5ddc55b
1 """
2 SleekXMPP: The Sleek XMPP Library
3 Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
4 This file is part of SleekXMPP.
6 See the file LICENSE for copying permissio
7 """
9 from sleekxmpp.plugins.base import register_plugin
11 from sleekxmpp.plugins.xep_0280.stanza import ReceivedCarbon, SentCarbon
12 from sleekxmpp.plugins.xep_0280.stanza import PrivateCarbon
13 from sleekxmpp.plugins.xep_0280.stanza import CarbonEnable, CarbonDisable
14 from sleekxmpp.plugins.xep_0280.carbons import XEP_0280
17 register_plugin(XEP_0280)