9 lines
227 B
Python
9 lines
227 B
Python
"""
|
|
Library of path constants to be used or referenced elsewhere.
|
|
"""
|
|
|
|
from custtypes import ExecutedPath
|
|
from pathlib import Path
|
|
|
|
USER_PATH: ExecutedPath = Path.home()
|
|
PROJ_ROOT: ExecutedPath = Path(__file__).parent.resolve() |