15 lines
437 B
TypeScript
15 lines
437 B
TypeScript
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,
|
|
OvertimeService,
|
|
],
|
|
exports: [TimesheetsService],
|
|
})
|
|
export class TimesheetsModule {}
|