mirror of
https://github.com/karma-riuk/crab-webapp.git
synced 2025-07-04 22:08:12 +02:00
9 lines
189 B
Python
9 lines
189 B
Python
# utils/paths.py
|
|
from pathlib import Path
|
|
|
|
PROJECT_ROOT = Path(__file__).resolve().parent.parent
|
|
|
|
|
|
def get_project_path(relative_path: str) -> Path:
|
|
return PROJECT_ROOT / relative_path
|