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

14 lines
267 B
Go

package commands
import (
"github.com/lyx0/nourybot/cmd/bot"
"github.com/lyx0/nourybot/pkg/api/ivr"
)
// Userid responds with the userid for a given user.
func Userid(channel, target string, nb *bot.Bot) {
reply := ivr.Userid(target)
nb.Send(channel, reply)
}