mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 20:20:27 +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{})
|
||
|
}
|