Skip to content

Instantly share code, notes, and snippets.

@kerren
Created August 19, 2018 10:46
Show Gist options
  • Save kerren/911acb32129913ebd8b2435c8c016820 to your computer and use it in GitHub Desktop.
Save kerren/911acb32129913ebd8b2435c8c016820 to your computer and use it in GitHub Desktop.
import { TypeOrmModule } from '@nestjs/typeorm';
import { databaseConnections } from './database-connections';
import { Module } from '@nestjs/common';
@Module({
imports: [
...databaseConnections
],
exports: [
...databaseConnections
]
})
export class DatabaseModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment