import { Module } from '@nestjs/common'; import { APP_INTERCEPTOR } from '@nestjs/core'; import { HqOperationLogService } from './hq-operation-log.service'; import { HqOperationInterceptor } from './hq-operation.interceptor'; @Module({ providers: [ HqOperationLogService, HqOperationInterceptor, { provide: APP_INTERCEPTOR, useClass: HqOperationInterceptor, }, ], exports: [HqOperationLogService], }) export class HqOperationModule {}