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