summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0020/stanza.py
blob: 13e4056e9142d1085ea259bb22b430face195ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
    SleekXMPP: The Sleek XMPP Library
    Copyright (C) 2013 Nathanael C. Fritz, Lance J.T. Stout
    This file is part of SleekXMPP.

    See the file LICENSE for copying permission.
"""

from sleekxmpp.xmlstream import ElementBase


class FeatureNegotiation(ElementBase):

    name = 'feature'
    namespace = 'http://jabber.org/protocol/feature-neg'
    plugin_attrib = 'feature_neg'
    interfaces = set()