12 lines
306 B
Python
12 lines
306 B
Python
import os
|
|
from config.config import CONFIG_DIR
|
|
|
|
host = "https://www.gitlink.org.cn"
|
|
|
|
bot = {
|
|
"bot_id": 10015,
|
|
"client_id": "f17640e840f1402091c52f0893837bfb",
|
|
"client_secret": "alpIyNYN9-4ubP5PZoF5yK0jkTYB1QTBORS3NRg6eL8",
|
|
"private_key": os.path.join(CONFIG_DIR, "private_key_10015.txt")
|
|
}
|