feat(goals): add goals.module
This commit is contained in:
parent
90c4932227
commit
284fba0d3a
1 changed files with 12 additions and 0 deletions
12
src/goals/goals.module.ts
Normal file
12
src/goals/goals.module.ts
Normal file
|
|
@ -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 {}
|
||||
Loading…
Reference in a new issue