mirror-nourybot/pkg/commands/randomcat.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 RandomCat(channel string, nb *bot.Bot) {
reply := api.RandomCat()
nb.Send(channel, reply)
}