Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Created July 6, 2020 19:54
Show Gist options
  • Save nmchenry01/01f2bc0ead4d9132ed2fab51eaa0b530 to your computer and use it in GitHub Desktop.
Save nmchenry01/01f2bc0ead4d9132ed2fab51eaa0b530 to your computer and use it in GitHub Desktop.
Root Module for "Why you should use NestJS for your next project" Blog
import { Module } from '@nestjs/common';
import { TaskModule } from './modules/task/task.module';
import { UserModule } from './modules/user/user.module';
@Module({
imports: [TaskModule, UserModule],
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment