mirror-nourybot/pkg/commands/pingme.go
2021-10-24 17:52:24 +02:00

14 lines
192 B
Go

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