summaryrefslogtreecommitdiff
path: root/slixmpp/features/feature_rosterver/stanza.py
blob: 3696d89aded0e9767482a23ab14de711665aac59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

# 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'