mirror of
https://github.com/42wim/matterbridge
synced 2024-11-11 01:10:38 +00:00
22 lines
311 B
Go
22 lines
311 B
Go
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{})
|
|
}
|