forked from wangziqi/gongxue-base
13 lines
509 B
TypeScript
13 lines
509 B
TypeScript
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 {}
|