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
|
|
|
// RandomNumber calls the numbers api with a random number.
|
2021-10-19 23:53:41 +02:00
|
|
|
func RandomNumber(channel string, nb *bot.Bot) {
|
|
|
|
reply := api.RandomNumber()
|
2021-10-20 23:54:34 +02:00
|
|
|
|
2021-10-19 23:53:41 +02:00
|
|
|
nb.Send(channel, string(reply))
|
|
|
|
}
|
|
|
|
|
2021-10-31 14:57:21 +01:00
|
|
|
// Number calls the numbers api with a given number.
|
2021-10-24 17:52:24 +02:00
|
|
|
func Number(channel, number string, nb *bot.Bot) {
|
2021-10-19 23:53:41 +02:00
|
|
|
reply := api.Number(number)
|
2021-10-20 23:54:34 +02:00
|
|
|
|
2021-10-19 23:53:41 +02:00
|
|
|
nb.Send(channel, string(reply))
|
|
|
|
}
|