Created
August 20, 2020 22:09
-
-
Save Mr-Malomz/c1bc1a6a42ea65af5608ded63555e6a4 to your computer and use it in GitHub Desktop.
App module (Root module of our application)
This file contains 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 { AppController } from './app.controller'; | |
import { AppService } from './app.service'; | |
import { AuthModule } from './auth/auth.module'; | |
@Module({ | |
imports: [AuthModule], | |
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