Mercurial > public > pacobot
annotate event/types.go @ 12:aaf85ae1f942
add very simple html template
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 20 Mar 2025 11:12:21 +0000 |
parents | e9df3bb010f4 |
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 } |