summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0428/fallback.py
blob: 61e913e3ba8092b93b0b02cb0b1284b56896ea59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
    Slixmpp: The Slick XMPP Library
    Copyright (C) 2020 Mathieu Pasquet <mathieui@mathieui.net>
    This file is part of Slixmpp.

    See the file LICENSE for copying permission.
"""
from slixmpp.plugins import BasePlugin
from slixmpp.plugins.xep_0428 import stanza


class XEP_0428(BasePlugin):
    '''XEP-0428: Fallback Indication'''

    name = 'xep_0428'
    description = 'Fallback Indication'
    dependencies = set()
    stanza = stanza
    namespace = stanza.NS

    def plugin_init(self) -> None:
        stanza.register_plugins()