refactoring
This commit is contained in:
parent
3fb9df425c
commit
62a2f15dab
12 changed files with 670 additions and 13 deletions
|
|
@ -3,6 +3,8 @@
|
|||
* Simple, comprehensive container with all services available
|
||||
*/
|
||||
|
||||
import type { ProxyManager } from '@stock-bot/proxy';
|
||||
|
||||
/**
|
||||
* Universal service container with all common services
|
||||
* Designed to work across different service contexts (data-ingestion, processing, etc.)
|
||||
|
|
@ -13,6 +15,7 @@ export interface IServiceContainer {
|
|||
readonly cache: any; // Cache provider (Redis/Dragonfly)
|
||||
readonly queue: any; // Queue manager (BullMQ)
|
||||
readonly http: any; // HTTP client with proxy support
|
||||
readonly proxy: ProxyManager; // Proxy manager service
|
||||
|
||||
// Database clients
|
||||
readonly mongodb: any; // MongoDB client
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue