mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
16 lines
363 B
Python
16 lines
363 B
Python
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
BASE_PATH = Path() / "zhenxun"
|
||
|
|
BASE_PATH.mkdir(parents=True, exist_ok=True)
|
||
|
|
|
||
|
|
|
||
|
|
CONFIG_URL = (
|
||
|
|
"https://raw.githubusercontent.com/HibiKier/zhenxun_bot_plugins/main/plugins.json"
|
||
|
|
)
|
||
|
|
"""插件信息文件"""
|
||
|
|
|
||
|
|
DOWNLOAD_URL = (
|
||
|
|
"https://api.github.com/repos/HibiKier/zhenxun_bot_plugins/contents/{}?ref=main"
|
||
|
|
)
|
||
|
|
"""插件下载地址"""
|