summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0428/stanza.py
blob: eb3c3daebf218a4437687b4360e7085aef660b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

# 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 permissio
from slixmpp.stanza import Message
from slixmpp.xmlstream import (
    ElementBase,
    register_stanza_plugin,
)


NS = 'urn:xmpp:fallback:0'


class Fallback(ElementBase):
    namespace = NS
    name = 'fallback'
    plugin_attrib = 'fallback'


def register_plugins():
    register_stanza_plugin(Message, Fallback)