Files
g0v0-server/app/path.py
2025-09-30 20:47:04 +08:00

8 lines
226 B
Python

from __future__ import annotations
from pathlib import Path
STATIC_DIR = Path(__file__).parent.parent / "static"
CONFIG_DIR = Path(__file__).parent.parent / "config"
ACHIEVEMENTS_DIR = Path(__file__).parent / "achievements"