import { Controller, Post, Headers, HttpCode, HttpStatus, RawBody, Body } from '@nestjs/common'; import { StripeService } from 'src/stripe/stripe.service';
@Controller('webhook') export class WebhookController { constructor(private stripeService: StripeService) {}