mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-06-28 12:39:23 +00:00
Add Slack support
This commit is contained in:
19
vendor/github.com/nlopes/slack/examples/channels/channels.go
generated
vendored
Normal file
19
vendor/github.com/nlopes/slack/examples/channels/channels.go
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/nlopes/slack"
|
||||
)
|
||||
|
||||
func main() {
|
||||
api := slack.New("YOUR_TOKEN_HERE")
|
||||
channels, err := api.GetChannels(false)
|
||||
if err != nil {
|
||||
fmt.Printf("%s\n", err)
|
||||
return
|
||||
}
|
||||
for _, channel := range channels {
|
||||
fmt.Println(channel.ID)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user