mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
14 lines
231 B
Go
14 lines
231 B
Go
|
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)
|
||
|
}
|