mirror-nourybot/pkg/commands/echo.go

8 lines
162 B
Go
Raw Normal View History

2021-10-15 18:41:02 +02:00
package commands
import "github.com/gempir/go-twitch-irc/v2"
func Echo(channel string, message string, client *twitch.Client) {
client.Say(channel, message)
}