mirror-nourybot/pkg/commands/randomdog.go
2021-10-18 18:33:49 +02:00

13 lines
217 B
Go

package commands
import (
"github.com/gempir/go-twitch-irc/v2"
"github.com/lyx0/nourybot/pkg/api"
)
func RandomDog(channel string, client *twitch.Client) {
reply := api.RandomDog()
client.Say(channel, reply)
}