File size: 298 Bytes
46252cd
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { Global, Module } from '@nestjs/common';
import { LoggerService } from './logger.service';
import { ShutdownService } from './shutdown.service';

@Global()
@Module({
  providers: [LoggerService, ShutdownService],
  exports: [LoggerService, ShutdownService],
})
export class LoggerModule {}