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