cleanup
This commit is contained in:
parent
d7979500eb
commit
ce5fa9da4a
25 changed files with 68 additions and 175 deletions
|
|
@ -15,7 +15,7 @@ import { syncIBExchanges } from './operations/sync-ib-exchanges.operations';
|
|||
import { syncQMProviderMappings } from './operations/sync-qm-provider-mappings.operations';
|
||||
|
||||
@Handler('exchanges')
|
||||
export class ExchangesHandler extends BaseHandler {
|
||||
class ExchangesHandler extends BaseHandler {
|
||||
constructor(services: IServiceContainer) {
|
||||
super(services);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ import { syncSymbolsFromProvider } from './operations/sync-symbols-from-provider
|
|||
import { getSyncStatus } from './operations/sync-status.operations';
|
||||
|
||||
@Handler('symbols')
|
||||
export class SymbolsHandler extends BaseHandler {
|
||||
class SymbolsHandler extends BaseHandler {
|
||||
constructor(services: IServiceContainer) {
|
||||
super(services);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,11 +17,3 @@ export interface SyncStatus {
|
|||
lastSyncCount: number;
|
||||
syncErrors?: string;
|
||||
}
|
||||
|
||||
export interface ExchangeMapping {
|
||||
id: string;
|
||||
code: string;
|
||||
name: string;
|
||||
country: string;
|
||||
currency: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue