mirror-nourybot/internal/commands/seventv.go

10 lines
156 B
Go
Raw Normal View History

2023-10-10 14:28:43 +02:00
package commands
import "fmt"
func SevenTV(query string) string {
reply := fmt.Sprintf("https://7tv.app/emotes?page=1&query=%s", query)
return reply
}