mirror-nourybot/pkg/commands/bttv.go
2021-10-23 21:59:56 +02:00

13 lines
239 B
Go

package commands
import (
"fmt"
"github.com/lyx0/nourybot/cmd/bot"
)
func Bttv(target string, emote string, nb *bot.Bot) {
reply := fmt.Sprintf("https://betterttv.com/emotes/shared/search?query=%s", emote)
nb.Send(target, reply)
}