buncid/dist/test/next-app/my-app/pages/api/hello.js
Benjamin Toby 619afc8303 Updates
2025-02-03 13:41:13 +01:00

7 lines
183 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = handler;
function handler(req, res) {
res.status(200).json({ name: "John Doe" });
}