mirror-nourybot/internal/commands/godocs.go

14 lines
188 B
Go
Raw Normal View History

2023-10-10 14:28:43 +02:00
package commands
import (
"fmt"
"net/url"
)
func Godocs(query string) string {
query = url.QueryEscape(query)
reply := fmt.Sprintf("https://godocs.io/?q=%s", query)
return reply
}