fix(import): small fix to timesheets.module
This commit is contained in:
parent
75615f7c33
commit
c6ff3139f2
|
|
@ -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 {}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user