slixmpp/sleekxmpp/plugins/xep_0280/__init__.py

18 lines
534 B
Python
Raw Normal View History

"""
SleekXMPP: The Sleek XMPP Library
2012-09-25 19:27:44 +00:00
Copyright (C) 2012 Nathanael C. Fritz, Lance J.T. Stout
This file is part of SleekXMPP.
See the file LICENSE for copying permissio
"""
from sleekxmpp.plugins.base import register_plugin
from sleekxmpp.plugins.xep_0280.stanza import ReceivedCarbon, SentCarbon
from sleekxmpp.plugins.xep_0280.stanza import PrivateCarbon
from sleekxmpp.plugins.xep_0280.stanza import CarbonEnable, CarbonDisable
from sleekxmpp.plugins.xep_0280.carbons import XEP_0280
register_plugin(XEP_0280)