Skip to content

Instantly share code, notes, and snippets.

@joebowbeer
joebowbeer / importing.module.ts
Created February 8, 2022 01:22 — forked from evolkmann/importing.module.ts
Create Nest.js modules with custom config
import { Module } from '@nestjs/common';
import { MyLibModule } from './my-lib.module';
@Module({
imports: [
MyLibModule.register({ name: 'Enzo' }),
]
})
export class ImportingModule {}