summaryrefslogtreecommitdiff
path: root/slixmpp/features/feature_rosterver/stanza.py
blob: c9a4a2da05315f3d162cebc8dee36e9d9fa0ee73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
    Slixmpp: The Slick XMPP Library
    Copyright (C) 2012  Nathanael C. Fritz
    This file is part of Slixmpp.

    See the file LICENSE for copying permission.
"""

from slixmpp.xmlstream import ElementBase


class RosterVer(ElementBase):

    name = 'ver'
    namespace = 'urn:xmpp:features:rosterver'
    interfaces = set()
    plugin_attrib = 'rosterver'