Skip to content

Instantly share code, notes, and snippets.

@cojack
Last active March 4, 2018 12:26
Show Gist options
  • Save cojack/73ec9791e87cf72dafd22456d2dd2bb2 to your computer and use it in GitHub Desktop.
Save cojack/73ec9791e87cf72dafd22456d2dd2bb2 to your computer and use it in GitHub Desktop.
import {Controller} from '@nestjs/common';
@Controller('cats')
export class CatsController {
@Get()
public async findAll(): void {
// logic
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment