Created
July 18, 2020 10:13
-
-
Save darwinsubramaniam/b3918a98fb8543cf3aecc7c10c523674 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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