mirror of
https://github.com/turbomaster95/coderrrrr.git
synced 2025-05-11 20:40:14 +00:00
8 lines
214 B
TypeScript
8 lines
214 B
TypeScript
import type { VercelRequest, VercelResponse } from "@vercel/node";
|
|
|
|
export default function (req: VercelRequest, res: VercelResponse) {
|
|
res.status(410).json({
|
|
error: "This account no longer exists."
|
|
});
|
|
};
|