initial commit for the discord verification bot checking ingame playtime

This commit is contained in:
jenz
2022-05-21 23:10:17 +02:00
parent 29a6ab2698
commit 028e06b2d6
6 changed files with 319 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import mysql.connector
token = ""
def get_connection_playtime():
return mysql.connector.connect(
host="127.0.0.1",
port=3306,
user="unloze_playtimestats",
password="")
def get_connection_xenforo():
return mysql.connector.connect(
host="127.0.0.1",
port=3306,
user="unloze_xenforo_external",
password="")