diff --git a/src/goals/goals.module.ts b/src/goals/goals.module.ts new file mode 100644 index 0000000..10acab3 --- /dev/null +++ b/src/goals/goals.module.ts @@ -0,0 +1,12 @@ +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], +}) +export class GoalsModule {}