Assist_Design/apps/bff/src/webhooks/webhooks.controller.ts

12 lines
323 B
TypeScript
Raw Normal View History

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
}