Added !poker and auth entry point
This commit is contained in:
13
cmd/oauth/main.go
Normal file
13
cmd/oauth/main.go
Normal 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)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user