Co-authored-by: Abdelrahman Said <said.abdelrahman@flawlessai.com> Reviewed-on: #6 Co-authored-by: Abdelrahman <said.abdelrahman89@gmail.com> Co-committed-by: Abdelrahman <said.abdelrahman89@gmail.com>
10 lines
206 B
Python
10 lines
206 B
Python
from pathlib import Path
|
|
|
|
# Paths
|
|
PACKAGE_DIR = Path(__file__).parent.resolve()
|
|
WAPP_REPO_ROOT = PACKAGE_DIR.parent
|
|
WAPP_SRC_ROOT = WAPP_REPO_ROOT / "src"
|
|
|
|
# Dictionary Keys
|
|
DBL_LIST_DATA = "dbl_list_data"
|