15 lines
321 B
Python
15 lines
321 B
Python
import os
|
|
from config.path import CONFIG_DIR
|
|
|
|
host = "https://testforgeplus.trustie.net"
|
|
|
|
bot = {
|
|
"bot_id": 823,
|
|
"client_id": "edc41a55532445008bc5489fe5da0f7b",
|
|
"client_secret": "H9U4iHU91WrWLGo9La48QZBXA-kyt-ZM4qS8UT3mnlQ",
|
|
"private_key": os.path.join(CONFIG_DIR, "private_key.txt")
|
|
}
|
|
|
|
GLOBAL_VAR = {
|
|
}
|