summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0333/__init__.py
blob: 472971d63393a673572ab5bfdfbda17f5e957b88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
    slixmpp: The Slick XMPP Library
    Copyright (C) 2016 Emmanuel Gil Peyrot
    This file is part of slixmpp.

    See the file LICENSE for copying permission.
"""

from slixmpp.plugins.base import register_plugin

from slixmpp.plugins.xep_0333.stanza import Markable, Received, Displayed, Acknowledged
from slixmpp.plugins.xep_0333.hints import XEP_0333

register_plugin(XEP_0333)