Skip to content

Instantly share code, notes, and snippets.

@kop7
Created August 12, 2020 18:44
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 kop7/b6837a3d0b0dadfbb863fbfd3ee3012e to your computer and use it in GitHub Desktop.
Save kop7/b6837a3d0b0dadfbb863fbfd3ee3012e to your computer and use it in GitHub Desktop.
App Module
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { ConfigModule } from './config/config.module';
import { SearchModule } from './modules/search/search.module';
import { MovieModule } from './modules/movie/movie.module';
@Module({
imports: [ConfigModule, SearchModule, MovieModule],
controllers: [AppController],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment