1234567891011121314 |
- #!/usr/bin/env tsx
- /**
- * Legacy entry point preserved for compatibility.
- * The refactored strategy is now handled by the modular orchestrator.
- * Delegates execution to scripts/run-modular-strategy.ts.
- */
- import { main as runModularStrategy } from './run-modular-strategy';
- runModularStrategy().catch((error) => {
- console.error('Fatal error while running modular strategy:', error);
- process.exit(1);
- });
|