mirror-nourybot/pkg/commands/seventv.go

15 lines
284 B
Go
Raw Normal View History

2021-10-24 17:48:00 +02:00
package commands
import (
"fmt"
"github.com/lyx0/nourybot/cmd/bot"
)
2021-10-31 14:57:21 +01:00
// SevenTV responds with a link to the 7tv search for a given emote.
2021-10-24 17:48:00 +02:00
func SevenTV(target, emote string, nb *bot.Bot) {
reply := fmt.Sprintf("https://7tv.app/emotes?query=%s", emote)
nb.Send(target, reply)
}