diff options
Diffstat (limited to 'message.go')
-rw-r--r-- | message.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -10,9 +10,9 @@ import ( func sendMessage(responseUrl, origText, text string) error { jm := message{ - Text: origText, - //ResponseType: "in_channel", - Attachments: []Attachment{{Text: text, Color: "#36a64f"}}, + Text: origText, + ResponseType: "in_channel", + Attachments: []attachment{{Text: text, Color: "#36a64f"}}, } b, _ := json.Marshal(jm) |