mirror-nourybot/pkg/commands/ffz.go

11 lines
230 B
Go
Raw Normal View History

2023-10-10 14:28:43 +02:00
package commands
import "fmt"
2024-02-28 11:53:39 +01:00
// Ffz returns the search url for a given query.
2023-10-10 19:46:56 +02:00
func Ffz(query string) string {
reply := fmt.Sprintf("https://www.frankerfacez.com/emoticons/?q=%s&sort=count-desc&days=0", query)
2023-10-10 14:28:43 +02:00
return reply
}