import { NextApiRequest, NextApiResponse } from "next"; /** * ============================================================================== * Imports * ============================================================================== */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** ****************************************************************************** */ /** * API handler * ============================================================================== * @type {import("next").NextApiHandler} */ export default async function handler( req: NextApiRequest, res: NextApiResponse ) { if (req.method !== "GET") return res.json({ msg: "Failed!" }); res.json({ success: true, }); }