mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-10 12:57:47 +00:00
Follow up to #5928 to remove a few more "now" references and replace with "vercel" where appropriate.
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import { VercelRequest, VercelResponse } from '@vercel/node';
|
|
|
|
export default (_req: VercelRequest, res: VercelResponse) => {
|
|
const date = new Date().toString();
|
|
res.status(200).send(date);
|
|
};
|