8 lines
170 B
Python
8 lines
170 B
Python
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
STATIC_DIR = Path(__file__).parent.parent / "static"
|
|
|
|
REPLAY_DIR = Path(__file__).parent.parent / "replays"
|