mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
11 lines
182 B
Go
11 lines
182 B
Go
package commands
|
|
|
|
import "fmt"
|
|
|
|
func Ffz(query string) string {
|
|
reply := fmt.Sprintf("https://www.frankerfacez.com/emoticons/?q=%s&sort=count-desc&days=0", query)
|
|
|
|
return reply
|
|
}
|
|
|