| """Backwards-compatible entry point for dynamic scenario generation. | |
| This module now delegates to the first-class CLI implemented in | |
| ``LWMTemporal.cli.generate_dynamic_data``. Invoke ``python generate_data.py`` | |
| exactly as before; the new CLI exposes additional flags for customization. | |
| """ | |
| from __future__ import annotations | |
| from LWMTemporal.cli.generate_dynamic_data import main | |
| if __name__ == "__main__": | |
| main() | |