Files
slixmpp/slixmpp/plugins/xep_0055/stanza.py
2022-09-11 23:22:44 +02:00

11 lines
231 B
Python

from typing import Set, ClassVar
from slixmpp.xmlstream import ElementBase
class Search(ElementBase):
namespace = "jabber:iq:search"
name = "query"
plugin_attrib = "search"
interfaces: ClassVar[Set[str]] = set()