diff --git a/src/goals/goals.module.ts b/src/goals/goals.module.ts index 10acab3..db9b03c 100644 --- a/src/goals/goals.module.ts +++ b/src/goals/goals.module.ts @@ -1,12 +1,5 @@ import { Module } from '@nestjs/common'; import { GoalsController } from './goals.controller'; -import { GoalsService } from './goals.service'; -import { EventsModule } from '../events/events.module'; -import { AuditModule } from '../audit/audit.module'; -@Module({ - imports: [EventsModule, AuditModule], - controllers: [GoalsController], - providers: [GoalsService], -}) +@Module({ controllers: [GoalsController] }) export class GoalsModule {}