/** * Comments/instructions for <%= classify(name) %>Module */ import { Module, Global } from '@nestjs/common'; import { ConfigManagerModule } from '@nestjsplus/lib-starter'; import { ConfigService } from './config.service'; @Global() @Module({ imports: [ // // See https://github.com/nestjsplus/config/wiki/Module-configuration-options // for details on how to configure the module. // ConfigManagerModule.register({ <%= registerOpts %> }), ], providers: [ConfigService], exports: [ConfigService], }) export class <%= classify(name) %>Module {}