targo-backend/src/time-and-attendance/modules/time-tracker/timesheets/timesheets.module.ts
2025-10-30 13:57:16 -04:00

17 lines
734 B
TypeScript

import { GetTimesheetsOverviewService } from 'src/time-and-attendance/modules/time-tracker/timesheets/services/timesheet-get-overview.service';
import { TimesheetArchiveService } from 'src/time-and-attendance/modules/time-tracker/timesheets/services/timesheet-archive.service';
import { TimesheetController } from 'src/time-and-attendance/modules/time-tracker/timesheets/controllers/timesheet.controller';
import { SharedModule } from 'src/time-and-attendance/modules/shared/shared.module';
import { Module } from '@nestjs/common';
@Module({
imports: [SharedModule],
controllers: [TimesheetController],
providers: [
TimesheetArchiveService,
GetTimesheetsOverviewService,
],
exports: [],
})
export class TimesheetsModule {}