mirror-nourybot/pkg/commands/pingme.go
2021-11-02 19:48:44 +01:00

15 lines
226 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)
}