Files
g0v0-server/app/path.py
2025-07-27 09:03:23 +00:00

9 lines
202 B
Python

from __future__ import annotations
from pathlib import Path
STATIC_DIR = Path(__file__).parent.parent / "static"
REPLAY_DIR = Path(__file__).parent.parent / "replays"
REPLAY_DIR.mkdir(exist_ok=True)