libs working i think

This commit is contained in:
Boki 2025-06-21 18:52:01 -04:00
parent dc4bd7b18e
commit 63baeaec70
16 changed files with 141 additions and 476 deletions

View file

@ -1,4 +1,5 @@
import { getLogger } from '@stock-bot/logger';
import type { ServiceContainer } from '@stock-bot/di';
import type { IHandler, ExecutionContext } from '../types/types';
/**
@ -8,7 +9,7 @@ import type { IHandler, ExecutionContext } from '../types/types';
export abstract class BaseHandler implements IHandler {
protected readonly logger;
constructor(protected readonly container: any) {
constructor(protected readonly container: ServiceContainer) {
this.logger = getLogger(this.constructor.name);
}