Skip to content

Instantly share code, notes, and snippets.

@rskhan167
Last active September 19, 2021 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rskhan167/6773a089d8b66457d1ff723e2ef85ff2 to your computer and use it in GitHub Desktop.
Save rskhan167/6773a089d8b66457d1ff723e2ef85ff2 to your computer and use it in GitHub Desktop.
Nestjs Series
import { Module } from '@nestjs/common';
import { MikroOrmModule } from '@mikro-orm/nestjs';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
imports: [MikroOrmModule.forRoot()],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment