From e2cc0598cf687fad7645cd6df55cd854d2e97df4 Mon Sep 17 00:00:00 2001 From: KienHT <71423573+kien-ht@users.noreply.github.com> Date: Sun, 26 May 2024 06:06:22 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9E=20add=20github=20marketplac?= =?UTF-8?q?e=20webhook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- netlify/functions/github-marketplace.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 netlify/functions/github-marketplace.ts diff --git a/netlify/functions/github-marketplace.ts b/netlify/functions/github-marketplace.ts new file mode 100644 index 0000000..6682092 --- /dev/null +++ b/netlify/functions/github-marketplace.ts @@ -0,0 +1,8 @@ +import { Handler } from '@netlify/functions' + +export const handler: Handler = async () => { + return { + statusCode: 200, + body: 'Hello world!' + } +}