mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
14 lines
238 B
Go
14 lines
238 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gempir/go-twitch-irc/v2"
|
|
)
|
|
|
|
func Godocs(channel string, searchTerm string, client *twitch.Client) {
|
|
resp := fmt.Sprintf("https://godocs.io/?q=%s", searchTerm)
|
|
|
|
client.Say(channel, resp)
|
|
}
|