13 lines
310 B
Python
13 lines
310 B
Python
import os
|
|
from config.config 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_823.txt")
|
|
}
|
|
|