19 lines
No EOL
812 B
TypeScript
19 lines
No EOL
812 B
TypeScript
import { syncAllExchanges } from './sync-all-exchanges.operations';
|
|
import { syncQMExchanges } from './qm-exchanges.operations';
|
|
import { syncIBExchanges } from './sync-ib-exchanges.operations';
|
|
import { syncQMProviderMappings } from './sync-qm-provider-mappings.operations';
|
|
import { clearPostgreSQLData } from './clear-postgresql-data.operations';
|
|
import { getExchangeStats } from './exchange-stats.operations';
|
|
import { getProviderMappingStats } from './provider-mapping-stats.operations';
|
|
import { getSyncStatus } from './enhanced-sync-status.operations';
|
|
|
|
export const exchangeOperations = {
|
|
syncAllExchanges,
|
|
syncQMExchanges,
|
|
syncIBExchanges,
|
|
syncQMProviderMappings,
|
|
clearPostgreSQLData,
|
|
getExchangeStats,
|
|
getProviderMappingStats,
|
|
'enhanced-sync-status': getSyncStatus,
|
|
}; |