mirror-nourybot/pkg/commands/randomduck.go
2021-10-31 15:03:31 +01:00

14 lines
296 B
Go

package commands
import (
"github.com/lyx0/nourybot/cmd/bot"
"github.com/lyx0/nourybot/pkg/api"
)
// RandomDuck calls the RandomDuck api and responds with a link for a
// random duck image.
func RandomDuck(channel string, nb *bot.Bot) {
reply := api.RandomDuck()
nb.Send(channel, reply)
}