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