Mercurial > public > pacobot
annotate event/types.go @ 13:e7ab74d2ad88 default tip
Move to mercurial
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Wed, 04 Jun 2025 09:38:35 +0100 |
parents | aaf85ae1f942 |
children |
rev | line source |
---|---|
8 | 1 package event |
2 | |
12
aaf85ae1f942
add very simple html template
Dennis C. M. <dennis@denniscm.com>
parents:
8
diff
changeset
|
3 type ChannelChatMsgSub struct { |
8 | 4 Payload struct { |
5 Event struct { | |
6 ChatterUserId string `json:"chatter_user_id"` | |
7 ChatterUserLogin string `json:"chatter_user_login"` | |
8 ChatterUserName string `json:"chatter_user_name"` | |
9 Msg struct { | |
10 Type string `json:"type"` | |
11 Text string `json:"text"` | |
12 } `json:"message"` | |
13 } `json:"event"` | |
14 } `json:"payload"` | |
15 } |