Update vendor (slack)

This commit is contained in:
Wim
2018-01-08 22:41:38 +01:00
parent 4828c43443
commit be898b44c3
58 changed files with 769 additions and 167 deletions

14
vendor/github.com/nlopes/slack/websocket_stars.go generated vendored Normal file
View File

@@ -0,0 +1,14 @@
package slack
type starEvent struct {
Type string `json:"type"`
User string `json:"user"`
Item StarredItem `json:"item"`
EventTimestamp string `json:"event_ts"`
}
// StarAddedEvent represents the Star added event
type StarAddedEvent starEvent
// StarRemovedEvent represents the Star removed event
type StarRemovedEvent starEvent