diff --git a/whereami.py b/whereami.py new file mode 100644 index 0000000..2418885 --- /dev/null +++ b/whereami.py @@ -0,0 +1,9 @@ +""" +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() \ No newline at end of file