From 82f9cf76a1f4033a464f09f0a5a560ecc1cbca5f Mon Sep 17 00:00:00 2001 From: mihai Date: Wed, 11 Sep 2024 11:05:46 +0300 Subject: [PATCH] change to html --- index.html | 3 +++ index.ts | 12 ------------ 2 files changed, 3 insertions(+), 12 deletions(-) create mode 100644 index.html delete mode 100644 index.ts diff --git a/index.html b/index.html new file mode 100644 index 0000000..6fd78e3 --- /dev/null +++ b/index.html @@ -0,0 +1,3 @@ + + ens proxy + diff --git a/index.ts b/index.ts deleted file mode 100644 index a249131..0000000 --- a/index.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { VercelRequest, VercelResponse } from '@vercel/node' - -export default async function index( - request: VercelRequest, - response: VercelResponse -) { - try { - response.status(200) - } catch (error) { - response.send({ error }) - } -}