6 lines
169 B
Python
6 lines
169 B
Python
from pathlib import Path
|
|
|
|
PROJECT_ROOT = Path(__file__).resolve().parent.parent
|
|
FRONTEND_DIST = PROJECT_ROOT / "frontend" / "dist"
|
|
DB_PATH = PROJECT_ROOT / "creator.db"
|