targo-backend/src/modules/timesheets/timesheets.module.ts
2025-08-01 16:17:58 -04:00

13 lines
464 B
TypeScript

import { Module } from '@nestjs/common';
import { TimesheetsController } from './controllers/timesheets.controller';
import { TimesheetsService } from './services/timesheets.service';
import { BusinessLogicsModule } from 'src/modules/business-logics/business-logics.module';
@Module({
imports: [BusinessLogicsModule],
controllers: [TimesheetsController],
providers: [ TimesheetsService ],
exports: [TimesheetsService],
})
export class TimesheetsModule {}