targo-backend/src/modules/timesheets/timesheets.module.ts
2025-07-31 10:41:15 -04:00

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 {}