()
| 46 | } |
| 47 | |
| 48 | export async function destroyInfrastructure(): Promise<void> { |
| 49 | log.info('Shutting down infrastructure systems'); |
| 50 | |
| 51 | // Notify shutdown |
| 52 | globalEventBus.emit('infrastructure:shutdown'); |
| 53 | |
| 54 | // Destroy event bus last |
| 55 | globalEventBus.destroy(); |
| 56 | } |
| 57 | |
| 58 | // Backward-compatible aliases |
| 59 | export const initializeCore = initializeInfrastructure; |