import { Global, Module } from '@nestjs/common'; import { LoggingService } from './service/loggingUtil.service'; import { ReflectionHelper } from './service/reflection-helper.service'; import { ExcelUtil } from './service/excelUtil.service'; import { ClockIDGenService } from './service/clockIDGenUtil.service'; import { WBSCodeGenService } from './service/wbsCodeGen.service'; import { ConfigModule } from '@nestjs/config'; @Global() @Module({ imports: [ConfigModule], providers: [ LoggingService, ReflectionHelper, ExcelUtil, ClockIDGenService, WBSCodeGenService, ], exports: [ LoggingService, ReflectionHelper, ExcelUtil, ClockIDGenService, WBSCodeGenService, ], }) export class UtilsModule {}