Source code for slixmpp.plugins.xep_0492.notify

# Slixmpp: The Slick XMPP Library
# Copyright (C) 2025 nicoco
# This file is part of Slixmpp.
# See the file LICENSE for copying permission.

from slixmpp.plugins import BasePlugin
from . import stanza


[docs] class XEP_0492(BasePlugin): """ XEP-0492: Chat notification settings """ name = "xep_0492" description = "XEP-0492: Chat notification settings" dependencies = {"xep_0402"} stanza = stanza def plugin_init(self): stanza.register_plugin()