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

12 lines
323 B
TypeScript
Raw Normal View History

2025-08-21 15:24:40 +09:00
import { Controller } from "@nestjs/common";
import { WebhooksService } from "./webhooks.service";
import { ApiTags } from "@nestjs/swagger";
2025-08-21 15:24:40 +09:00
@ApiTags("webhooks")
@Controller("webhooks")
export class WebhooksController {
constructor(private webhooksService: WebhooksService) {}
// TODO: Implement webhook endpoints
}