mirror-nourybot/pkg/commands/randomdog.go

13 lines
202 B
Go
Raw Normal View History

2021-10-19 23:53:41 +02:00
package commands
import (
"github.com/lyx0/nourybot/cmd/bot"
"github.com/lyx0/nourybot/pkg/api"
)
func RandomDog(channel string, nb *bot.Bot) {
reply := api.RandomDog()
nb.Send(channel, reply)
}