10 lines
234 B
Python
10 lines
234 B
Python
#!/usr/bin/env python3
|
|
"""Shared path helpers for the project layout."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
PROJECT_ROOT = Path(__file__).resolve().parent.parent
|
|
WORKSPACE_ROOT = PROJECT_ROOT / "workspace"
|