1
0
Fork 0
mirror of https://github.com/lyx0/nourybot.git synced 2024-11-13 19:49:55 +01:00
mirror-nourybot/pkg/commands/seventv.go
2021-10-24 17:48:00 +02:00

13 lines
215 B
Go

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