moved folders around

This commit is contained in:
Boki 2025-06-21 18:27:00 -04:00
parent 4f89affc2b
commit 36cb84b343
202 changed files with 1160 additions and 660 deletions

View file

@ -2,7 +2,7 @@
* QM Exchanges Operations - Exchange fetching functionality
*/
import { OperationContext } from '@stock-bot/utils';
import { OperationContext } from '@stock-bot/di';
import type { ServiceContainer } from '@stock-bot/connection-factory';
import { initializeQMResources } from './session.operations';

View file

@ -2,9 +2,9 @@
* QM Session Operations - Session creation and management
*/
import { OperationContext } from '@stock-bot/utils';
import { OperationContext } from '@stock-bot/di';
import { isShutdownSignalReceived } from '@stock-bot/shutdown';
import { getRandomProxy } from '@stock-bot/utils';
import { getRandomProxy } from '@stock-bot/di';
import type { ServiceContainer } from '@stock-bot/connection-factory';
import { QMSessionManager } from '../shared/session-manager';

View file

@ -2,7 +2,7 @@
* QM Spider Operations - Symbol spider search functionality
*/
import { OperationContext } from '@stock-bot/utils';
import { OperationContext } from '@stock-bot/di';
import { QueueManager } from '@stock-bot/queue';
import { QMSessionManager } from '../shared/session-manager';

View file

@ -2,9 +2,9 @@
* QM Symbols Operations - Symbol fetching and API interactions
*/
import { OperationContext } from '@stock-bot/utils';
import { OperationContext } from '@stock-bot/di';
import { getRandomProxy } from '@stock-bot/utils';
import type { ServiceContainer } from '@stock-bot/connection-factory';
import type { ServiceContainer } from '@stock-bot/di';
import { QMSessionManager } from '../shared/session-manager';
import { QM_SESSION_IDS, QM_CONFIG, SESSION_CONFIG } from '../shared/config';