more cleanup
This commit is contained in:
parent
bbb551ddc7
commit
2d14bb87f9
6 changed files with 8 additions and 20 deletions
|
|
@ -3,4 +3,4 @@
|
|||
*/
|
||||
export { exchangeRoutes } from './exchange.routes';
|
||||
export { healthRoutes } from './health.routes';
|
||||
export { queueRoutes } from './queue.routes';
|
||||
export { createQueueRoutes } from './queue.routes';
|
||||
|
|
|
|||
|
|
@ -29,7 +29,4 @@ export function createQueueRoutes(container: IServiceContainer) {
|
|||
});
|
||||
|
||||
return queue;
|
||||
}
|
||||
|
||||
// Legacy export for backward compatibility
|
||||
export const queueRoutes = createQueueRoutes({} as IServiceContainer);
|
||||
}
|
||||
|
|
@ -148,7 +148,4 @@ export function createEnhancedSyncRoutes(container: IServiceContainer) {
|
|||
});
|
||||
|
||||
return enhancedSync;
|
||||
}
|
||||
|
||||
// Legacy export for backward compatibility
|
||||
export const enhancedSyncRoutes = createEnhancedSyncRoutes({} as IServiceContainer);
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
// Export all route modules
|
||||
export { healthRoutes } from './health.routes';
|
||||
export { syncRoutes } from './sync.routes';
|
||||
export { enhancedSyncRoutes } from './enhanced-sync.routes';
|
||||
export { statsRoutes } from './stats.routes';
|
||||
export { createSyncRoutes } from './sync.routes';
|
||||
export { createEnhancedSyncRoutes } from './enhanced-sync.routes';
|
||||
export { createStatsRoutes } from './stats.routes';
|
||||
|
|
|
|||
|
|
@ -57,7 +57,4 @@ export function createStatsRoutes(container: IServiceContainer) {
|
|||
});
|
||||
|
||||
return stats;
|
||||
}
|
||||
|
||||
// Legacy export for backward compatibility
|
||||
export const statsRoutes = createStatsRoutes({} as IServiceContainer);
|
||||
}
|
||||
|
|
@ -89,7 +89,4 @@ export function createSyncRoutes(container: IServiceContainer) {
|
|||
});
|
||||
|
||||
return sync;
|
||||
}
|
||||
|
||||
// Legacy export for backward compatibility
|
||||
export const syncRoutes = createSyncRoutes({} as IServiceContainer);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue