Skip to content

Instantly share code, notes, and snippets.

@rskhan167
Created September 27, 2021 09:19
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/e536d5406b83df5c89d906e6d1ca538b to your computer and use it in GitHub Desktop.
Save rskhan167/e536d5406b83df5c89d906e6d1ca538b to your computer and use it in GitHub Desktop.
Nest series
import { Module } from '@nestjs/common';
import { MikroOrmModule } from '@mikro-orm/nestjs';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { UserModule } from './user/user.module';
@Module({
imports: [MikroOrmModule.forRoot(), UserModule],
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