import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; import { ParticipantGroup } from './entity/participantGroup.entity'; import { ParticipantGroupService } from './participantGroup.service'; import { ParticipantGroupController } from './participantGroup.controller'; @Module({ imports: [TypeOrmModule.forFeature([ParticipantGroup])], controllers: [ParticipantGroupController], providers: [ParticipantGroupService], }) export class ParticipanGrouptModule {}