mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-10 12:57:47 +00:00
4 lines
114 B
JavaScript
4 lines
114 B
JavaScript
export default function handler(req, res) {
|
|
const date = new Date().toString();
|
|
res.status(200).send(date);
|
|
}; |