From c6ff3139f289db58835cbb16f0d96ba5246ef8ec Mon Sep 17 00:00:00 2001 From: Matthieu Haineault Date: Thu, 31 Jul 2025 10:41:15 -0400 Subject: [PATCH] fix(import): small fix to timesheets.module --- src/modules/timesheets/timesheets.module.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/modules/timesheets/timesheets.module.ts b/src/modules/timesheets/timesheets.module.ts index 11da5c8..7979a2b 100644 --- a/src/modules/timesheets/timesheets.module.ts +++ b/src/modules/timesheets/timesheets.module.ts @@ -1,10 +1,14 @@ import { Module } from '@nestjs/common'; import { TimesheetsController } from './controllers/timesheets.controller'; import { TimesheetsService } from './services/timesheets.service'; +import { OvertimeService } from 'src/business-logic/overtime.service'; @Module({ controllers: [TimesheetsController], - providers: [TimesheetsService], + providers: [ + TimesheetsService, + OvertimeService, + ], exports: [TimesheetsService], }) export class TimesheetsModule {}