mirror-nourybot/pkg/commands/bttvemotes.go

20 lines
417 B
Go
Raw Normal View History

2021-10-16 18:06:34 +02:00
package commands
import (
"fmt"
"github.com/gempir/go-twitch-irc/v2"
2021-10-17 17:56:19 +02:00
"github.com/lyx0/nourybot/pkg/api/aiden"
2021-10-16 18:06:34 +02:00
log "github.com/sirupsen/logrus"
)
func BttvEmotes(channel string, client *twitch.Client) {
2021-10-17 17:56:19 +02:00
resp, err := aiden.ApiCall(fmt.Sprintf("api/v1/emotes/%s/bttv", channel))
2021-10-16 18:06:34 +02:00
if err != nil {
2021-10-17 17:56:19 +02:00
log.Error(err)
client.Say(channel, "Something went wrong FeelsBadMan")
2021-10-16 18:06:34 +02:00
}
2021-10-17 17:56:19 +02:00
client.Say(channel, string(resp))
2021-10-16 18:06:34 +02:00
}