feat(xiaobao): 后台刷新风险摘要
This commit is contained in:
@@ -1,12 +1,16 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { PrismaService } from '../../prisma/prisma.service';
|
||||
import { WorkActivityModule } from '../work-activity/work-activity.module';
|
||||
import { BugController } from './bug.controller';
|
||||
import { BugService } from './bug.service';
|
||||
import { BUG_PRISMA, BugService } from './bug.service';
|
||||
|
||||
@Module({
|
||||
imports: [WorkActivityModule],
|
||||
controllers: [BugController],
|
||||
providers: [BugService],
|
||||
providers: [
|
||||
{ provide: BUG_PRISMA, useExisting: PrismaService },
|
||||
BugService,
|
||||
],
|
||||
exports: [BugService],
|
||||
})
|
||||
export class BugModule {}
|
||||
|
||||
Reference in New Issue
Block a user