Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Created July 6, 2020 19:56
Show Gist options
  • Save nmchenry01/6e80b904de5cf7d8eb7595ce9722cb81 to your computer and use it in GitHub Desktop.
Save nmchenry01/6e80b904de5cf7d8eb7595ce9722cb81 to your computer and use it in GitHub Desktop.
Task Module for "Why you should use NestJS for your next project" Blog
import { Module } from '@nestjs/common';
import { TaskService } from './task.service';
import { TaskController } from './task.controller';
@Module({
controllers: [TaskController],
providers: [TaskService],
})
export class TaskModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment