Update codegen to support accepting JSON file as input

This commit is contained in:
2025-08-31 20:56:49 +01:00
parent 1e224702a3
commit 26fd329caa
6 changed files with 252 additions and 28 deletions

View File

@@ -1,5 +1,10 @@
from pathlib import Path
# Paths
PACKAGE_DIR = Path(__file__).parent.resolve()
WAPP_SRC_ROOT = PACKAGE_DIR.parent / "src"
WAPP_REPO_ROOT = PACKAGE_DIR.parent
WAPP_SRC_ROOT = WAPP_REPO_ROOT / "src"
# Dictionary Keys
DBL_LIST_DATA = "dbl_list_data"
ARRAY_DATA = "array_data"