Files
Velocity-OS/core/backend/db/__init__.py

5 lines
144 B
Python

from pathlib import Path
_core_db_root = Path(__file__).resolve().parents[2] / "db"
__path__ = [str(_core_db_root / "db"), str(_core_db_root)]