mirror-nourybot/pkg/commands/ffz.go

14 lines
231 B
Go
Raw Normal View History

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