mirror-nourybot/internal/commands/google.go
2023-10-10 14:28:43 +02:00

14 lines
199 B
Go

package commands
import (
"fmt"
"net/url"
)
func Google(query string) string {
query = url.QueryEscape(query)
reply := fmt.Sprintf("https://www.google.com/search?q=%s", query)
return reply
}