mirror-nourybot/internal/commands/bttv.go

12 lines
171 B
Go
Raw Normal View History

2023-09-07 20:43:16 +02:00
package commands
import (
"fmt"
)
func Bttv(query string) string {
reply := fmt.Sprintf("https://betterttv.com/emotes/shared/search?query=%s", query)
return reply
}