mirror of
https://github.com/smyalygames/FiniteVolumeGPU.git
synced 2025-11-27 23:29:49 +01:00
9 lines
166 B
Python
9 lines
166 B
Python
from pathlib import Path
|
|
|
|
|
|
def get_project_root() -> Path:
|
|
"""
|
|
Gets the root directory of the project.
|
|
"""
|
|
return Path(__file__).parent.parent.parent
|