Created
September 27, 2021 09:19
-
-
Save rskhan167/e536d5406b83df5c89d906e6d1ca538b to your computer and use it in GitHub Desktop.
Nest series
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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