mirror of
https://github.com/PaiGramTeam/genshin-wiki.git
synced 2024-11-21 22:58:02 +00:00
6 lines
170 B
Python
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)
|