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-20 18:02:50 +09:00
|
|
|
|
2025-08-21 15:24:40 +09:00
|
|
|
@ApiTags("webhooks")
|
|
|
|
|
@Controller("webhooks")
|
2025-08-20 18:02:50 +09:00
|
|
|
export class WebhooksController {
|
|
|
|
|
constructor(private webhooksService: WebhooksService) {}
|
|
|
|
|
|
|
|
|
|
// TODO: Implement webhook endpoints
|
|
|
|
|
}
|