add broker
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-02-07 20:24:31 +03:00
parent b270345e77
commit 4d80480d0f
26 changed files with 694 additions and 37 deletions

View File

@ -4,11 +4,12 @@ import { IdeasService } from './ideas.service';
import { IdeasController } from './ideas.controller';
import { Idea } from './entities/idea.entity';
import { SpecificationHistory } from './entities/specification-history.entity';
import { IdeaEventsHandler } from './idea-events.handler';
@Module({
imports: [TypeOrmModule.forFeature([Idea, SpecificationHistory])],
controllers: [IdeasController],
providers: [IdeasService],
exports: [IdeasService, TypeOrmModule],
providers: [IdeasService, IdeaEventsHandler],
exports: [IdeasService, IdeaEventsHandler, TypeOrmModule],
})
export class IdeasModule {}