import { Controller } from '@nestjs/common'; import { WebhooksService } from './webhooks.service'; import { ApiTags } from '@nestjs/swagger'; @ApiTags('webhooks') @Controller('webhooks') export class WebhooksController { constructor(private webhooksService: WebhooksService) {} // TODO: Implement webhook endpoints }