Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Created July 6, 2020 19:59
Show Gist options
  • Save nmchenry01/e23a810cc09030849e0d2bc2c8cf579c to your computer and use it in GitHub Desktop.
Save nmchenry01/e23a810cc09030849e0d2bc2c8cf579c to your computer and use it in GitHub Desktop.
Task Controller V1 for "Why you should use NestJS for your next project" Blog
import { Controller, Get, Post } from '@nestjs/common';
@Controller('task')
export class TaskController {
@Post()
createTask(): string {
return 'This action adds a new task';
}
@Get()
findAllTasks(): string {
return 'This action returns all tasks';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment