(private readonly ordersService: OrdersService)
| 13 | @Controller('orders') |
| 14 | export class OrdersController { |
| 15 | constructor(private readonly ordersService: OrdersService) {} |
| 16 | @UseGuards(JwtAuthGuard) |
| 17 | @Post('/create') |
| 18 | async createOrder(@Req() request: Request) { |
nothing calls this directly
no outgoing calls
no test coverage detected