Added !poker and auth entry point

This commit is contained in:
bryce
2025-07-15 20:24:16 +12:00
parent 049051a7e1
commit b0be1f99c8
6 changed files with 271 additions and 5 deletions

13
cmd/oauth/main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"log"
auth "streambot_twitch/internal/auth"
)
func main() {
if err := auth.StartOAuthServer(":8080"); err != nil {
log.Fatalf("OAuth server error: %v", err)
}
}