mirror-nourybot/pkg/commands/godocs.go
2021-10-24 17:52:24 +02:00

14 lines
216 B
Go

package commands
import (
"fmt"
"github.com/lyx0/nourybot/cmd/bot"
)
func Godocs(channel, searchTerm string, nb *bot.Bot) {
resp := fmt.Sprintf("https://godocs.io/?q=%s", searchTerm)
nb.Send(channel, resp)
}