fix(import): small fix to timesheets.module

This commit is contained in:
Matthieu Haineault 2025-07-31 10:41:15 -04:00
parent 75615f7c33
commit c6ff3139f2

View File

@ -1,10 +1,14 @@
import { Module } from '@nestjs/common'; import { Module } from '@nestjs/common';
import { TimesheetsController } from './controllers/timesheets.controller'; import { TimesheetsController } from './controllers/timesheets.controller';
import { TimesheetsService } from './services/timesheets.service'; import { TimesheetsService } from './services/timesheets.service';
import { OvertimeService } from 'src/business-logic/overtime.service';
@Module({ @Module({
controllers: [TimesheetsController], controllers: [TimesheetsController],
providers: [TimesheetsService], providers: [
TimesheetsService,
OvertimeService,
],
exports: [TimesheetsService], exports: [TimesheetsService],
}) })
export class TimesheetsModule {} export class TimesheetsModule {}