File size: 758 Bytes
675f6bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import { Module } from '@nestjs/common';
import { ProjectsController } from './projects.controller';
import { MatchingController } from './matching.controller';
import { ProjectsService } from './projects.service';
import { MatchingService } from './matching.service';
import { PrismaModule } from '../database/prisma.module';
import { FastapiClientModule } from '../elicitation/fastapi-client.module';
import { MatchingHelperModule } from '../shared/matching/matching-helper.module';
@Module({
imports: [PrismaModule, FastapiClientModule, MatchingHelperModule],
controllers: [ProjectsController, MatchingController],
providers: [ProjectsService, MatchingService],
exports: [ProjectsService, MatchingService],
})
export class ProjectsModule {} |