From 2129542815e210da7e5e6d270610d7f07b198d5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=86=8C=EC=9A=B8=EC=B9=98=ED=82=A8?= <90738604+soulchicken@users.noreply.github.com> Date: Tue, 17 Oct 2023 14:19:27 +0900 Subject: [PATCH] =?UTF-8?q?Refactor:=20=EC=9D=B4=EC=A0=9C=20=EC=95=88?= =?UTF-8?q?=EC=93=B0=EB=8A=94=20API=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/api/userStatusToleeyj.ts | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/pages/api/userStatusToleeyj.ts diff --git a/src/pages/api/userStatusToleeyj.ts b/src/pages/api/userStatusToleeyj.ts deleted file mode 100644 index e4d3066..0000000 --- a/src/pages/api/userStatusToleeyj.ts +++ /dev/null @@ -1,19 +0,0 @@ -// Next.js API route support: https://nextjs.org/docs/api-routes/introduction -import type { NextApiRequest, NextApiResponse } from 'next'; - -type Data = { - friendShipExp: number, - maxFriendShipExp: number, - friendShipLv: number -} - -export default function handler( - req: NextApiRequest, - res: NextApiResponse, -) { - res.status(200).json({ - friendShipExp: 100, - maxFriendShipExp: 200, - friendShipLv: 0, - }); -}