mirror-nourybot/pkg/commands/randomxkcd.go

12 lines
218 B
Go
Raw Normal View History

2021-10-18 14:57:44 +02:00
package commands
import (
"github.com/gempir/go-twitch-irc/v2"
"github.com/lyx0/nourybot/pkg/api"
)
func RandomXkcd(channel string, client *twitch.Client) {
reply := api.RandomXkcd()
client.Say(channel, reply)
}