Skip to content

Instantly share code, notes, and snippets.

@darwinsubramaniam
Created July 18, 2020 10:13
Show Gist options
  • Save darwinsubramaniam/b3918a98fb8543cf3aecc7c10c523674 to your computer and use it in GitHub Desktop.
Save darwinsubramaniam/b3918a98fb8543cf3aecc7c10c523674 to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import databaseConfig from './database.config';
@Module({
imports: [ConfigModule.forFeature(databaseConfig)],
providers: [],
exports: []
})
export class CouchdbModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment