12 lines
323 B
TypeScript
12 lines
323 B
TypeScript
|
|
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
|
||
|
|
}
|