Skip to content

Instantly share code, notes, and snippets.

@hzburki
Created July 14, 2019 14:59
Show Gist options
  • Save hzburki/3e61f50e0083d32b336ffaeaa0f9b83d to your computer and use it in GitHub Desktop.
Save hzburki/3e61f50e0083d32b336ffaeaa0f9b83d to your computer and use it in GitHub Desktop.
Database Module for NestJS Sequelize Blog
import { Module } from '@nestjs/common';
import { databaseProviders } from './database.providers';
@Module({
providers: [...databaseProviders],
exports: [...databaseProviders],
})
export class DatabaseModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment