mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-03 11:57:45 +00:00
Update vendor (slack)
This commit is contained in:
21
vendor/github.com/nlopes/slack/examples/ims/ims.go
generated
vendored
Normal file
21
vendor/github.com/nlopes/slack/examples/ims/ims.go
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/nlopes/slack"
|
||||
)
|
||||
|
||||
func main() {
|
||||
api := slack.New("YOUR_TOKEN_HERE")
|
||||
|
||||
userID := "USER_ID"
|
||||
|
||||
_, _, channelID, err := api.OpenIMChannel(userID)
|
||||
|
||||
if err != nil {
|
||||
fmt.Printf("%s\n", err)
|
||||
}
|
||||
|
||||
api.PostMessage(channelID, "Hello World!", slack.PostMessageParameters{})
|
||||
}
|
Reference in New Issue
Block a user