mirror-nourybot/cmd/bot/main.go
2022-08-06 23:45:02 +02:00

15 lines
196 B
Go

package main
import "github.com/lyx0/nourybot/pkg/bot"
func main() {
bot := bot.New()
bot.TwitchClient.Join("nourylul")
err := bot.TwitchClient.Connect()
if err != nil {
panic(err)
}
}