mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
15 lines
196 B
Go
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)
|
|
}
|
|
}
|