mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
11 lines
207 B
Go
11 lines
207 B
Go
package commands
|
|
|
|
import "fmt"
|
|
|
|
// SevenTV returns a search link to a given query.
|
|
func SevenTV(query string) string {
|
|
reply := fmt.Sprintf("https://7tv.app/emotes?page=1&query=%s", query)
|
|
|
|
return reply
|
|
}
|