mirror-nourybot/pkg/commands/pingme.go
2021-10-15 18:35:16 +02:00

15 lines
215 B
Go

package commands
import (
"fmt"
"github.com/gempir/go-twitch-irc/v2"
)
func Pingme(channel string, user string, client *twitch.Client) {
response := fmt.Sprintf("@%s", user)
client.Say(channel, response)
}