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

15 lines
216 B
Go

package commands
import (
"fmt"
"github.com/lyx0/nourybot/cmd/bot"
)
// Pingme pings a user.
func Pingme(channel, user string, nb *bot.Bot) {
response := fmt.Sprintf("@%s", user)
nb.Send(channel, response)
}