6 lines
116 B
Python
6 lines
116 B
Python
from pathlib import Path
|
|
|
|
|
|
PACKAGE_DIR = Path(__file__).parent.resolve()
|
|
WAPP_SRC_ROOT = PACKAGE_DIR.parent / "src"
|