Skip to content

Instantly share code, notes, and snippets.

@kerren
Created August 19, 2018 10:50
Show Gist options
  • Select an option

  • Save kerren/ba858db4652f63ee1555cc55cc03efc2 to your computer and use it in GitHub Desktop.

Select an option

Save kerren/ba858db4652f63ee1555cc55cc03efc2 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: [
TypeOrmModule
]
})
export class DatabaseModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment