Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import { Module } from '@nestjs/common';
  2. import { ConfigService } from './config.service';
  3.  
  4. @Module({
  5. providers: [ConfigService],
  6. exports: [ConfigService],
  7. })
  8. export class ConfigModule {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement