feat(cc-053): GoalsModule
This commit is contained in:
parent
04f142e7ea
commit
b0415c6e76
1 changed files with 1 additions and 8 deletions
|
|
@ -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 {}
|
||||
|
|
|
|||
Loading…
Reference in a new issue