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

22 lines
418 B
Go

package commands
import (
"fmt"
"github.com/lyx0/nourybot/cmd/bot"
"github.com/lyx0/nourybot/pkg/api/ivr"
)
// Subage responds with the time a given user has been subscribed
// to a given channel.
func Subage(channel, username, streamer string, nb *bot.Bot) {
ivrResponse, err := ivr.Subage(username, streamer)
if err != nil {
nb.Send(channel, fmt.Sprint(err))
return
}
nb.Send(channel, ivrResponse)
}