File size: 241 Bytes
8ea6d3a
 
649d2d5
8ea6d3a
 
 
649d2d5
1
2
3
4
5
6
7
8
import os
from pathlib import Path
DATA_DIR = Path(os.getenv("DATA_DIR", str(DATA_DIR)))
DATA_DIR.mkdir(parents=True, exist_ok=True)
INDEX_DIR = DATA_DIR / "index"; INDEX_DIR.mkdir(exist_ok=True)
HISTORY_JSON = DATA_DIR / "history.json"