mirror-nourybot/pkg/commands/youtube.go

15 lines
264 B
Go
Raw Normal View History

2023-10-10 14:28:43 +02:00
package commands
import (
"fmt"
"net/url"
)
2024-02-28 11:53:39 +01:00
// Youtube returns a search link to a given query.
2023-10-10 14:28:43 +02:00
func Youtube(query string) string {
query = url.QueryEscape(query)
reply := fmt.Sprintf("https://www.youtube.com/results?search_query=%s", query)
return reply
}