summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nlopes/slack/websocket_teams.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-11-02 17:09:34 +0100
committerWim <wim@42.be>2017-11-02 17:09:34 +0100
commitb2a6777995c55233a47212743c781a27dde8dce6 (patch)
treebe4a9ef00448f82c71ae47d42835347160b70900 /vendor/github.com/nlopes/slack/websocket_teams.go
parentb461fc5e404c6e0df7289477171cad629cddb3e6 (diff)
downloadmatterbridge-msglm-b2a6777995c55233a47212743c781a27dde8dce6.tar.gz
matterbridge-msglm-b2a6777995c55233a47212743c781a27dde8dce6.tar.bz2
matterbridge-msglm-b2a6777995c55233a47212743c781a27dde8dce6.zip
Use matterbridge vendored slack
Diffstat (limited to 'vendor/github.com/nlopes/slack/websocket_teams.go')
-rw-r--r--vendor/github.com/nlopes/slack/websocket_teams.go33
1 files changed, 0 insertions, 33 deletions
diff --git a/vendor/github.com/nlopes/slack/websocket_teams.go b/vendor/github.com/nlopes/slack/websocket_teams.go
deleted file mode 100644
index 3898c833..00000000
--- a/vendor/github.com/nlopes/slack/websocket_teams.go
+++ /dev/null
@@ -1,33 +0,0 @@
-package slack
-
-// TeamJoinEvent represents the Team join event
-type TeamJoinEvent struct {
- Type string `json:"type"`
- User User `json:"user"`
-}
-
-// TeamRenameEvent represents the Team rename event
-type TeamRenameEvent struct {
- Type string `json:"type"`
- Name string `json:"name,omitempty"`
- EventTimestamp string `json:"event_ts,omitempty"`
-}
-
-// TeamPrefChangeEvent represents the Team preference change event
-type TeamPrefChangeEvent struct {
- Type string `json:"type"`
- Name string `json:"name,omitempty"`
- Value []string `json:"value,omitempty"`
-}
-
-// TeamDomainChangeEvent represents the Team domain change event
-type TeamDomainChangeEvent struct {
- Type string `json:"type"`
- URL string `json:"url"`
- Domain string `json:"domain"`
-}
-
-// TeamMigrationStartedEvent represents the Team migration started event
-type TeamMigrationStartedEvent struct {
- Type string `json:"type"`
-}