mirror-nourybot/pkg/commands/randomfox.go

15 lines
291 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"
)
2021-10-31 14:57:21 +01:00
// RandomFox calls the RandomFox api and responds with a link for a
// random fox image.
2021-10-19 23:53:41 +02:00
func RandomFox(channel string, nb *bot.Bot) {
reply := api.RandomFox()
nb.Send(channel, reply)
}