mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 14:28:04 +00:00
4 lines
126 B
TypeScript
4 lines
126 B
TypeScript
|
import { Handler } from "express";
|
||
|
export const handler: Handler = (req, res) => res.json(req.query);
|
||
|
export default handler;
|