10 lines
267 B
Python
10 lines
267 B
Python
from konabot.common.path import DATA_PATH
|
|
|
|
KONAPH_BASE = DATA_PATH / "KonaPH"
|
|
KONAPH_DATA_JSON = KONAPH_BASE / "data.json"
|
|
KONAPH_IMAGE_BASE = KONAPH_BASE / "imgs"
|
|
|
|
# 保证所有文件夹存在
|
|
KONAPH_BASE.mkdir(exist_ok=True)
|
|
KONAPH_IMAGE_BASE.mkdir(exist_ok=True)
|