Skip to content

Commit

Permalink
redirect character_icons to parent api
Browse files Browse the repository at this point in the history
  • Loading branch information
guyutongxue committed Dec 30, 2024
1 parent 67fcb4d commit c385b3e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions api/v2/images/character_icons/[id].js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// @ts-check

/**
* @typedef {import("@vercel/node").VercelRequest} VercelRequest
* @typedef {import("@vercel/node").VercelResponse} VercelResponse
*/

import parentHandler from "../[id].js";

/**
*
* @param {VercelRequest} req
* @param {VercelResponse} res
* @returns
*/
export default function handler(req, res) {
return parentHandler(req, res);
}

0 comments on commit c385b3e

Please sign in to comment.