mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
20 lines
275 B
Go
20 lines
275 B
Go
|
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)
|
||
|
}
|
||
|
}
|