link-stack/apps/link/app/api/[service]/webhooks/route.ts

7 lines
228 B
TypeScript
Raw Normal View History

2024-06-28 07:49:39 +02:00
import { handleWebhook } from "@link-stack/bridge-ui";
// Force this route to be dynamic (not statically generated at build time)
export const dynamic = 'force-dynamic';
2024-06-28 07:49:39 +02:00
export { handleWebhook as GET, handleWebhook as POST };