Skip to content

Instantly share code, notes, and snippets.

@cristoni
Created November 10, 2018 11:37
Show Gist options
  • Save cristoni/e101183055a3c476a5c5e9a70aebbb50 to your computer and use it in GitHub Desktop.
Save cristoni/e101183055a3c476a5c5e9a70aebbb50 to your computer and use it in GitHub Desktop.
Main module for NestJS application
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { ConfigModule } from './config/config.module';
@Module({
imports: [ConfigModule],
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