summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nlopes/slack/examples/ims/ims.go
blob: 80d73c0a6b2eea8d3daea1a58d6863db22188b43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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{})
}