import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; import { Department, User, Student, StudentDingMapping, Class } from '../entities'; import { DingTalkService } from './dingtalk.service'; import { WeComService } from './wecom.service'; @Module({ imports: [TypeOrmModule.forFeature([Department, User, Student, StudentDingMapping, Class])], providers: [DingTalkService, WeComService], exports: [DingTalkService, WeComService], }) export class IntegrationModule {}