mirror-nourybot/pkg/commands/ffz.go

14 lines
224 B
Go
Raw Normal View History

2021-10-23 21:59:56 +02:00
package commands
import (
"fmt"
"github.com/lyx0/nourybot/cmd/bot"
)
2021-10-24 17:52:24 +02:00
func Ffz(target, emote string, nb *bot.Bot) {
2021-10-23 21:59:56 +02:00
reply := fmt.Sprintf("https://www.frankerfacez.com/emoticons/?q=%s", emote)
nb.Send(target, reply)
}