mirror of
https://github.com/PaiGramTeam/genshin-wiki.git
synced 2024-11-22 07:07:40 +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)
|