When I run this nestjs code, I encounter an error:
SyntaxError: Invalid or unexpected token
what is the reason?
import {Controller, Get, Bind, Req, Post} from '@nestjs/common';
@Controller('cats')
export class catsController {
@Post()
create() {
return "this is a action 1ss"
}
@Get()
@Bind(Req())
findAll(request) {
return "this is a action";
}
}