targo-backend/src/modules/timesheets/timesheets.module.ts

10 lines
303 B
TypeScript

import { Module } from '@nestjs/common';
import { TimesheetsController } from './controllers/timesheets.controller';
import { TimesheetsService } from './services/timesheets.service';
@Module({
controllers: [TimesheetsController],
providers: [TimesheetsService]
})
export class TimesheetsModule {}