mirror-nourybot/pkg/handlers/command.go

15 lines
251 B
Go
Raw Normal View History

package handlers
2021-10-14 00:19:35 +02:00
import (
"github.com/gempir/go-twitch-irc/v2"
2021-10-19 22:25:47 +02:00
"github.com/lyx0/nourybot/cmd/bot"
"github.com/sirupsen/logrus"
2021-10-14 00:19:35 +02:00
)
2021-10-19 22:25:47 +02:00
func Command(message twitch.PrivateMessage, nb *bot.Bot) {
logrus.Info("fn Command")
2021-10-14 01:30:29 +02:00
2021-10-19 22:25:47 +02:00
nb.Send("nourybot", "xd")
2021-10-15 18:35:16 +02:00
2021-10-14 00:19:35 +02:00
}