Exemplo n.º 1
0
Arquivo: slack.go Projeto: chuyd/bot
func readBotInfo(api *slack.Client) {
	info, err := api.AuthTest()
	if err != nil {
		fmt.Printf("Error calling AuthTest: %s\n", err)
		return
	}
	botUserID = info.UserID
}