Skip to content

Instantly share code, notes, and snippets.

@Mr-Malomz
Created August 20, 2020 22:09
Show Gist options
  • Save Mr-Malomz/c1bc1a6a42ea65af5608ded63555e6a4 to your computer and use it in GitHub Desktop.
Save Mr-Malomz/c1bc1a6a42ea65af5608ded63555e6a4 to your computer and use it in GitHub Desktop.
App module (Root module of our application)
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