From b2a6777995c55233a47212743c781a27dde8dce6 Mon Sep 17 00:00:00 2001 From: Wim Date: Thu, 2 Nov 2017 17:09:34 +0100 Subject: Use matterbridge vendored slack --- .../nlopes/slack/examples/groups/groups.go | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 vendor/github.com/nlopes/slack/examples/groups/groups.go (limited to 'vendor/github.com/nlopes/slack/examples/groups') diff --git a/vendor/github.com/nlopes/slack/examples/groups/groups.go b/vendor/github.com/nlopes/slack/examples/groups/groups.go deleted file mode 100644 index 2af215d1..00000000 --- a/vendor/github.com/nlopes/slack/examples/groups/groups.go +++ /dev/null @@ -1,22 +0,0 @@ -package main - -import ( - "fmt" - - "github.com/nlopes/slack" -) - -func main() { - api := slack.New("YOUR_TOKEN_HERE") - // If you set debugging, it will log all requests to the console - // Useful when encountering issues - // api.SetDebug(true) - groups, err := api.GetGroups(false) - if err != nil { - fmt.Printf("%s\n", err) - return - } - for _, group := range groups { - fmt.Printf("ID: %s, Name: %s\n", group.ID, group.Name) - } -} -- cgit v1.2.3