mirror-nourybot/pkg/commands/pingme.go

15 lines
215 B
Go
Raw Normal View History

2021-10-15 18:35:16 +02:00
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)
}