8 lines
303 B
Python
8 lines
303 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
This script is deprecated. Use the unified CLI:
|
|
python -m src.unified_cli --config ../generator_config.json --excel-file DESC_IP_MERGED.xlsx all
|
|
"""
|
|
import sys
|
|
print("generate_all.py is deprecated. Please use the unified CLI (src.unified_cli).", file=sys.stderr)
|
|
sys.exit(1) |