genshin-wiki/utils/const.py
2023-04-15 13:09:56 +08:00

6 lines
170 B
Python

from pathlib import Path
PROJECT_ROOT = Path(__file__).joinpath("../../").resolve()
DATA_DIR = PROJECT_ROOT.joinpath("data")
DATA_DIR.mkdir(parents=True, exist_ok=True)