mirror-nourybot/cmd/bot/bot.go

18 lines
284 B
Go
Raw Normal View History

2022-03-10 23:00:37 +01:00
package main
func (nb *nourybot) connect() error {
nb.twitchClient.Join("nourybot")
err := nb.twitchClient.Connect()
if err != nil {
panic(err)
}
nb.twitchClient.Say("nourybot", "xd")
return nil
}
func (nb *nourybot) onConnect() {
nb.twitchClient.Say("nourybot", "xd")
}