summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0055/stanza.py
blob: 18bccf7e80b19bd6d77921f7ba527af297ffe3ab (plain)
1
2
3
4
5
6
7
8
9
10
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()