summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/protoxep_reactions/__init__.py
blob: e107bd16eb380d053ce47e8485262d17da92b3bc (plain)
1
2
3
4
5
6
7
8
9
10
11
"""
    Slixmpp: The Slick XMPP Library
    Copyright (C) 2019 Mathieu Pasquet
    This file is part of Slixmpp.

    See the file LICENSE for copying permission.
"""
from slixmpp.plugins.base import register_plugin
from slixmpp.plugins.protoxep_reactions.reactions import XEP_Reactions

register_plugin(XEP_Reactions)