예제 #1
0
파일: bot.go 프로젝트: hacsoc/slacksoc
func sendDM(bot *slack.Bot, event map[string]interface{}) (*slack.Message, slack.Status) {
	user := event["user"].(string)
	return bot.DirectMessage(user, "hi"), slack.Continue
}