Last active
July 18, 2020 10:14
-
-
Save darwinsubramaniam/8ad6388f8d16030e62cc5ce924a267a0 to your computer and use it in GitHub Desktop.
sample of the couchdb.module.ts
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