mirror-nourybot/pkg/commands/randomdog.go

13 lines
217 B
Go
Raw Normal View History

2021-10-18 18:33:49 +02:00
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)
}