Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-01-29 01:59:02 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-01-29 01:59:22 +0300
commitbcf7fd1f61857cd0411645b48b58125fdd739ce3 (patch)
treee2fa46b42ca104eaf849c13776397dee54ad13e3 /nbxmpp/structs.py
parent18edd864e367a26b702965496c15444e9e3582be (diff)
Add UserMood (XEP-0107) module
Diffstat (limited to 'nbxmpp/structs.py')
-rw-r--r--nbxmpp/structs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/nbxmpp/structs.py b/nbxmpp/structs.py
index c6e86e3..d79e13d 100644
--- a/nbxmpp/structs.py
+++ b/nbxmpp/structs.py
@@ -60,6 +60,8 @@ StanzaIDData.__new__.__defaults__ = (None, None)
PubSubEventData = namedtuple('PubSubEventData', 'node id item data')
+MoodData = namedtuple('MoodData', 'mood text')
+
class MAMData(namedtuple('MAMData', 'id query_id archive namespace timestamp')):