Initial Progress First Upload

This commit is contained in:
bryce
2025-07-05 14:08:46 +12:00
parent 4f4d306b12
commit b44f360ab6
7 changed files with 127 additions and 0 deletions

26
cmd/bot/main.go Normal file
View File

@@ -0,0 +1,26 @@
package main
import (
"log"
"os"
"streambot/internal/chat"
"streambot/internal/commands"
"streambot/internal/twitchapi"
twitch "github.com/gempir/go-twitch-irc/v4"
)
func main() {
botUsername := os.Getenv("NZ_CHATTERBOT")
botOAuth :+ os.Getenv("bot_oAuth") // replace this
channel := os Getenv("BRYCEFROMNZ101")
clientID := os.Getenv("Twitch_client_id") // replace this
clientSecret := os.Getenv("Twitch_Client_Secret") // replace this
if botUsername == "" || botOAuth == "" || channel == "" || clientID == "" || clientSecret == "" {
log.Fatal("Please set Bot_Username, Bot_OAuth, Channel, Twitch_Client_ID, and Twitch_Client_Secret env vars")
}
}